From 5f0170df9787c6f3ff17cc168b3f2e3f511453f6 Mon Sep 17 00:00:00 2001
From: zhangqian <zhangqian@123.com>
Date: 星期二, 31 十月 2023 20:04:16 +0800
Subject: [PATCH] 支持职级降级的情况
---
model/request/serviceFollowup.go | 80 +++++++++++++++++++++-------------------
1 files changed, 42 insertions(+), 38 deletions(-)
diff --git a/model/request/serviceFollowup.go b/model/request/serviceFollowup.go
index e1b5764..06b86e1 100644
--- a/model/request/serviceFollowup.go
+++ b/model/request/serviceFollowup.go
@@ -1,38 +1,42 @@
-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"`
-}
+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"`
+ ServiceOrderId int `json:"serviceOrderId"`
+ 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"`
+ CodeStandID string `json:"codeStandID"` //缂栫爜id
+}
+
+type UpdateServiceFollowup struct {
+ Id int `json:"id"`
+ ServiceFollowup
+}
+
+type GetServiceFollowupList struct {
+ PageInfo
+ KeywordType constvar.ServiceFollowupKeywordType `json:"keywordType"`
+ Keyword string `json:"keyword"`
+ ServiceOrderId int `json:"serviceOrderId"` //鏈嶅姟鍥炶鍗昳d
+}
+
+type DeleteServiceFollowup struct {
+ Ids []int `json:"ids"`
+}
--
Gitblit v1.8.0