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
type GetCustomerUserListReq struct {
PageInfo
MocId int `gorm:"type:int(255)" json:"moc_id"`
UserName string `gorm:"type:string(255)" json:"user_name"`
Region string `gorm:"type:string(255)" json:"region"`
RegionIn string `gorm:"type:string(255)" json:"region_in"`
City string `gorm:"type:string(255)" json:"city"`
Zone string `gorm:"type:string(255)" json:"zone"`
Address string `gorm:"type:string(255)" json:"address"`
Contacts string `gorm:"type:string(255)" json:"contacts"`
ContactsMobile string `gorm:"type:string(255)" json:"contacts_mobile"`
WorkerPosition string `gorm:"type:string(255)" json:"worker_position"`
WorkerName string `gorm:"type:string(255)" json:"worker_name"`
WorkerMobile string `gorm:"type:string(255)" json:"worker_mobile"`
UserSource string `gorm:"type:string(255)" json:"user_source"`
UserType int `gorm:"type:int(255)" json:"user_type"`
CreateTime string `gorm:"type:string(255)" json:"create_time"`
}
type GetCustomerUserListReply struct {
List []GetCustomerUserList `json:"list"`
Total int64 `json:"total"`
}
type GetCustomerUserList struct {
Id int `gorm:"type:int(255)" json:"id"`
UserName string `gorm:"type:string(255)" json:"user_name"`
Region string `gorm:"type:string(255)" json:"region"`
City string `gorm:"type:string(255)" json:"city"`
Zone string `gorm:"type:string(255)" json:"zone"`
Address string `gorm:"type:string(255)" json:"address"`
Contacts string `gorm:"type:string(255)" json:"contacts"`
ContactsMobile string `gorm:"type:string(255)" json:"contacts_mobile"`
WorkerPosition string `gorm:"type:string(255)" json:"worker_position"`
WorkerName string `gorm:"type:string(255)" json:"worker_name"`
WorkerMobile string `gorm:"type:string(255)" json:"worker_mobile"`
UserSource string `gorm:"type:string(255)" json:"user_source"`
UserType int `gorm:"type:int(255)" json:"user_type"`
CreateTime string `gorm:"type:string(255)" json:"create_time"`
}