123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package v1
- type GetManagementReq struct {
- Index int64 `json:"index"`
- PageSize int64 `json:"pagesize"`
- PastureId string `json:"pastureid"`
- Genre int64 `json:"genre"`
- StartDate string `json:"startdate"`
- EndDate string `json:"enddate"`
- }
- type Management struct {
- Id int64 `json:"id"`
- Pastureid string `json:"pastureid"`
- Count int64 `json:"count"`
- Genre int64 `json:"genre"`
- Recall int64 `json:"recall"`
- ImportTime string `json:"importdate"`
- PastureName string `json:"pasturename"`
- }
- type GetManagementRes struct {
- List []*Management `json:"list"`
- Total int64 `json:"total"`
- }
- type GetManagementBhReq struct {
- Index int64 `json:"index"`
- PageSize int64 `json:"pagesize"`
- ManagementId int64 `json:"managementid"`
- }
- type ManagementBh struct {
- ManagementID int64 `json:"managementid"`
- Code string `json:"code"`
- Date string `json:"date"`
- }
- type GetManagementBhRes struct {
- List []*ManagementBh `json:"list"`
- Total int64 `json:"total"`
- }
|