base_district.go 708 B

123456789101112131415161718192021222324252627
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. Fill this file as you wish.
  3. // ==========================================================================
  4. package base
  5. import (
  6. "dashoo.cn/opms_libary/request"
  7. "dashoo.cn/micro/app/model/base/internal"
  8. )
  9. // BaseDistrict is the golang structure for table base_district.
  10. type BaseDistrict internal.BaseDistrict
  11. // Fill with you ideas below.
  12. type BaseDistrictSearchReq struct {
  13. Id int `json:"id"` // 省份ID
  14. request.PageReq
  15. }
  16. type T struct {
  17. Id int `json:"id"`
  18. ParentId int `json:"parentId"`
  19. DistName string `json:"distName" `
  20. Children []*T `json:"children"`
  21. }