area.go 512 B

1234567891011121314151617181920212223242526272829
  1. package v1
  2. import (
  3. "property-callback-gateway/param/base"
  4. pb_v1 "property-callback-gateway/pb/v1"
  5. )
  6. type ProvinceCityAreaRequest struct{
  7. base.Header
  8. }
  9. type ProvinceCityAreaResponse struct {
  10. base.Result
  11. Data pb_v1.ProvinceCityAreaReply `json:"data"`
  12. }
  13. type StreetCommitteeQuery struct {
  14. AreaCode string `form:"area_code" json:"area_code"`
  15. }
  16. type StreetCommitteeRequest struct {
  17. base.Header
  18. StreetCommitteeQuery
  19. }
  20. type StreetCommitteeResponse struct {
  21. base.Result
  22. Data pb_v1.StreetCommitteeReply
  23. }