area.go 797 B

1234567891011121314151617181920212223
  1. package models
  2. /**
  3. 请求地区数据返回参数
  4. */
  5. type ReqProvince struct {
  6. Id string `json:"id"` // 用户代码
  7. Code string `json:"code"` // 用户代码
  8. Name string `json:"name"` // 用户代码
  9. }
  10. type ReqCity struct {
  11. Id string `json:"id"` // 用户代码
  12. Code string `json:"code"` // 用户代码
  13. Name string `json:"name"` // 用户代码
  14. ProvinceCode string `json:"province_code"` // 用户代码
  15. }
  16. type ReqArea struct {
  17. Id string `json:"id"` // 用户代码
  18. Code string `json:"code"` // 用户代码
  19. Name string `json:"name"` // 用户代码
  20. CityCode string `json:"province_code"` // 用户代码
  21. }