From 7438f17c0b3a9f79ee5890c554bedc64c362859b Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期五, 13 十月 2023 14:04:59 +0800 Subject: [PATCH] 销售计划简单数据权限 --- model/request/serviceFollowup.go | 32 ++++++++++++++++++-------------- 1 files changed, 18 insertions(+), 14 deletions(-) diff --git a/model/request/serviceFollowup.go b/model/request/serviceFollowup.go index 7ba75c8..cd45528 100644 --- a/model/request/serviceFollowup.go +++ b/model/request/serviceFollowup.go @@ -1,23 +1,25 @@ 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"` + 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"` } type UpdateServiceFollowup struct { @@ -27,7 +29,9 @@ type GetServiceFollowupList struct { PageInfo - Keyword string `json:"keyword"` + KeywordType constvar.ServiceFollowupKeywordType `json:"keywordType"` + Keyword string `json:"keyword"` + ServiceOrderId int `json:"serviceOrderId"` //鏈嶅姟鍥炶鍗昳d } type DeleteServiceFollowup struct { -- Gitblit v1.8.0