vo.go 646 B

12345678910111213141516171819202122232425262728
  1. package commonsrv
  2. import (
  3. "gogs.baozhida.cn/Cold_Logistic_libs/pkg/contrib/core"
  4. )
  5. type ProvinceListRespVO struct {
  6. ParentId int `json:"parentId"`
  7. Id int `json:"id"`
  8. Name string `json:"name"`
  9. Children []*ProvinceListRespVO `json:"children"`
  10. }
  11. type UserListReqVO struct {
  12. Page core.Page `json:"page"`
  13. UserTokey string `json:"userTokey"`
  14. Search struct {
  15. Name string `json:"name"`
  16. } `json:"search"`
  17. }
  18. type LogisticListReqVO struct {
  19. UserTokey string `json:"userTokey"`
  20. Page core.Page `json:"page"`
  21. Search struct {
  22. Name string `json:"name"`
  23. }
  24. }