package models /** 请求地区数据返回参数 */ type ReqProvince struct { Id string `json:"id"` // 用户代码 Code string `json:"code"` // 用户代码 Name string `json:"name"` // 用户代码 } type ReqCity struct { Id string `json:"id"` // 用户代码 Code string `json:"code"` // 用户代码 Name string `json:"name"` // 用户代码 ProvinceCode string `json:"province_code"` // 用户代码 } type ReqArea struct { Id string `json:"id"` // 用户代码 Code string `json:"code"` // 用户代码 Name string `json:"name"` // 用户代码 CityCode string `json:"province_code"` // 用户代码 }