package v1 type GetManagementReq struct { Index int64 `json:"index"` PageSize int64 `json:"pagesize"` PastureId string `json:"pastureid"` //牧场id Genre int64 `json:"genre"` //0 售卖,1 返厂 2 置换 -1 全部 StartDate string `json:"startdate"` //导入开始时间 EndDate string `json:"enddate"` //导入结束时间 } type Management struct { Id int64 `json:"id"` Pastureid string `json:"pastureid"` //牧场id Count int64 `json:"count"` //出厂数量 Genre int64 `json:"genre"` //0 售卖,1 返厂 2 置换 Recall int64 `json:"recall"` //关联召回批次数 ImportTime string `json:"importdate"` //导入时间 PastureName string `json:"pasturename"` //牧场id } 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"` //脖环管理ID Code string `json:"code"` //脖环编码 Date string `json:"date"` //日期 } type GetManagementBhRes struct { List []*ManagementBh `json:"list"` Total int64 `json:"total"` }