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