From cdb47d41f39a5c600caa41692c9b5b0732944d6a Mon Sep 17 00:00:00 2001
From: wangpengfei <274878379@qq.com>
Date: 星期二, 08 八月 2023 11:38:27 +0800
Subject: [PATCH] fix
---
model/request/serviceFollowup.go | 73 +++++++++++++++++++-----------------
1 files changed, 38 insertions(+), 35 deletions(-)
diff --git a/model/request/serviceFollowup.go b/model/request/serviceFollowup.go
index 7ba75c8..e1b5764 100644
--- a/model/request/serviceFollowup.go
+++ b/model/request/serviceFollowup.go
@@ -1,35 +1,38 @@
-package request
-
-type AddServiceFollowup struct {
- ServiceFollowup
-}
-
-type ServiceFollowup struct {
- ClientId int `json:"clientId"`
- Number string `json:"number"`
- ContactId int `json:"contactId"`
- ServiceId int `json:"serviceId"`
- MemberId int `json:"memberId"`
- PlanId int `json:"planId"`
- Satisfaction int `json:"satisfaction"`
- TimelyRate int `json:"timelyRate"`
- SolveRate int `json:"solveRate"`
- IsVisit int `json:"isVisit"`
- OldMemberId int `json:"oldMemberId"`
- Remark string `json:"remark"`
- File string `json:"file"`
-}
-
-type UpdateServiceFollowup struct {
- Id int `json:"id"`
- ServiceFollowup
-}
-
-type GetServiceFollowupList struct {
- PageInfo
- Keyword string `json:"keyword"`
-}
-
-type DeleteServiceFollowup struct {
- Ids []int `json:"ids"`
-}
+package request
+
+import "aps_crm/constvar"
+
+type AddServiceFollowup struct {
+ ServiceFollowup
+}
+
+type ServiceFollowup struct {
+ ClientId int `json:"clientId"`
+ Number string `json:"number"`
+ ContactId int `json:"contactId"`
+ ServiceId int `json:"serviceId"`
+ MemberId int `json:"memberId"`
+ PlanId int `json:"planId"`
+ Satisfaction int `json:"satisfaction"`
+ TimelyRate int `json:"timelyRate"`
+ SolveRate int `json:"solveRate"`
+ IsVisit int `json:"isVisit"`
+ OldMemberId int `json:"oldMemberId"`
+ Remark string `json:"remark"`
+ File string `json:"file"`
+}
+
+type UpdateServiceFollowup struct {
+ Id int `json:"id"`
+ ServiceFollowup
+}
+
+type GetServiceFollowupList struct {
+ PageInfo
+ KeywordType constvar.ServiceFollowupKeywordType `json:"keywordType"`
+ Keyword string `json:"keyword"`
+}
+
+type DeleteServiceFollowup struct {
+ Ids []int `json:"ids"`
+}
--
Gitblit v1.8.0