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
|
}
|