12345678910111213141516171819202122232425262728 |
- package commonsrv
- import (
- "gogs.baozhida.cn/Cold_Logistic_libs/pkg/contrib/core"
- )
- type ProvinceListRespVO struct {
- ParentId int `json:"parentId"`
- Id int `json:"id"`
- Name string `json:"name"`
- Children []*ProvinceListRespVO `json:"children"`
- }
- type UserListReqVO struct {
- Page core.Page `json:"page"`
- UserTokey string `json:"userTokey"`
- Search struct {
- Name string `json:"name"`
- } `json:"search"`
- }
- type LogisticListReqVO struct {
- UserTokey string `json:"userTokey"`
- Page core.Page `json:"page"`
- Search struct {
- Name string `json:"name"`
- }
- }
|