liujiandao
2023-10-17 3e5480a69ab4d6c3494eb517e69e141b80fac3de
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 {