1234567891011121314151617 |
- package model
- type PastureCommonResponse struct {
- Code int32 `json:"code"`
- Msg string `json:"msg"`
- Data *PastureCommonData `json:"data"`
- }
- type PastureCommonData struct {
- List interface{} `json:"list"`
- Data interface{} `json:"data"`
- PageSize int32 `json:"pageSize"`
- Total int32 `json:"total"`
- PageNum int32 `json:"pageNum"`
- }
|