zhangqian
2023-08-02 6e9274c27ffc8fe7f41e2c3c06a239d4c3fb09e5
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
27
28
29
30
31
32
33
34
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"`
}
 
type UpdateServiceFollowup struct {
    Id int `json:"id"`
    ServiceFollowup
}
 
type GetServiceFollowupList struct {
    PageInfo
    KeywordType constvar.ServiceFollowupKeywordType `json:"keywordType"`
    Keyword     string                              `json:"keyword"`
}