From 34ef7217a034599217a7fdd1e28e1ae6910e1b4b Mon Sep 17 00:00:00 2001 From: liujiandao <274878379@qq.com> Date: 星期三, 11 十月 2023 20:15:21 +0800 Subject: [PATCH] 菜单获取编码规则 --- model/request/serviceFollowup.go | 33 +++++++++++++++++++-------------- 1 files changed, 19 insertions(+), 14 deletions(-) diff --git a/model/request/serviceFollowup.go b/model/request/serviceFollowup.go index cd45528..b5628e8 100644 --- a/model/request/serviceFollowup.go +++ b/model/request/serviceFollowup.go @@ -1,25 +1,30 @@ package request -import "aps_crm/constvar" +import ( + "aps_crm/constvar" + "aps_crm/proto/code" +) 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"` + 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 + CodeRule code.CodeStandard `json:"codeRule"` } type UpdateServiceFollowup struct { -- Gitblit v1.8.0