liujiandao
2024-01-11 40e540f8ca398fee68f4520dbebd6db6fe2e164c
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
35
36
37
38
39
40
41
42
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"`
    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 {
    Id int `json:"id"`
    ServiceFollowup
}
 
type GetServiceFollowupList struct {
    PageInfo
    KeywordType    constvar.ServiceFollowupKeywordType `json:"keywordType"`
    Keyword        string                              `json:"keyword"`
    ServiceOrderId int                                 `json:"serviceOrderId"` //服务回访单id
}
 
type DeleteServiceFollowup struct {
    Ids []int `json:"ids"`
}