fix
wangpengfei
2023-07-25 1109d0c6565e3413e54d9f28e68dda8ca26b99c4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package request
 
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
}