fix
wangpengfei
2023-07-18 3cc43f63ba22972cea3d5376c24ac5d546a72cec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package request
 
type AddCustomerServiceSheet struct {
    CustomerServiceSheet
}
 
type CustomerServiceSheet struct {
    MemberId     int    `json:"memberId"`
    Number       string `json:"number"`
    ServiceMode  int    `json:"serviceMode"`
    Priority     int    `json:"priority"`
    HandleStatus int    `json:"handleStatus"`
}
 
type UpdateCustomerServiceSheet struct {
    Id int `json:"id"`
    CustomerServiceSheet
}