zhangqian
2023-10-28 05582688724c78bc70a7bc860193c67677f6c8cf
model/request/serviceFollowup.go
@@ -2,7 +2,6 @@
import (
   "aps_crm/constvar"
   "aps_crm/proto/code"
)
type AddServiceFollowup struct {
@@ -10,21 +9,20 @@
}
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
   CodeRule       code.CodeStandard `json:"codeRule"`
   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 {