package dto type OpWorkerDetailData struct { Id uint64 `json:"id"` // id Type int `json:"type"` // 员工类型:1 代理商员工,2 平台员工, 3 兼职员工,4 厂商员工,5 加盟商员工 6 加盟商老板 7 政府人员 8 多城市员工 9代运营员工 UserName string `json:"user_name"` // 用户名 Mobile string `json:"mobile"` // 手机号 Name string `json:"real_name"` // 真实姓名 Status int `json:"status"` // 账户状态:0 关闭,1 开启, 2删除 CurrentCityId int `json:"current_city_id"` // 用户当前运维城市 } type GetOpWorkerDetailResponse struct { Data []OpWorkerDetailData `json:"data"` }