wangpengfei
2023-07-04 1142bc88cebcfedac1617749bc195a2615799518
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
package request
 
type AddClient struct {
    Client
}
 
type Client struct {
    Name              string  `json:"name"`                // 公司名称
    Number            string  `json:"number"`              // 公司编号
    ClientStatusId    int     `json:"client_status_id"`    // 客户状态ID
    ClientTypeId      int     `json:"client_type_id"`      // 客户类型ID
    ClientOriginId    int     `json:"client_origin_id"`    // 客户来源ID
    ClientLevelId     int     `json:"client_level_id"`     // 客户等级ID
    MemberId          int     `json:"member_id"`           // 销售负责人ID
    ServiceMemberId   int     `json:"service_member_id"`   // 服务负责人ID
    DetailAddress     string  `json:"detail_address"`      // 详细地址
    Remark            string  `json:"remark"`              // 备注
    NextVisitTime     string  `json:"next_visit_time"`     // 下次回访时间
    LatestServiceTime string  `json:"latest_service_time"` // 最晚服务时间
    Contact           Contact `json:"contact"`
    Address
    Business
}
 
type UpdateClient struct {
    Id int `json:"id"`
    Client
}