management.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package v1
  2. type GetManagementReq struct {
  3. Index int64 `json:"index"`
  4. PageSize int64 `json:"pagesize"`
  5. PastureId string `json:"pastureid"` //牧场id
  6. Genre int64 `json:"genre"` //0 售卖,1 返厂 2 置换 -1 全部
  7. StartDate string `json:"startdate"` //导入开始时间
  8. EndDate string `json:"enddate"` //导入结束时间
  9. }
  10. type Management struct {
  11. Id int64 `json:"id"`
  12. Pastureid string `json:"pastureid"` //牧场id
  13. Count int64 `json:"count"` //出厂数量
  14. Genre int64 `json:"genre"` //0 售卖,1 返厂 2 置换
  15. Recall int64 `json:"recall"` //关联召回批次数
  16. ImportTime string `json:"importdate"` //导入时间
  17. PastureName string `json:"pasturename"` //牧场id
  18. }
  19. type GetManagementRes struct {
  20. List []*Management `json:"list"`
  21. Total int64 `json:"total"`
  22. }
  23. type GetManagementBhReq struct {
  24. Index int64 `json:"index"`
  25. PageSize int64 `json:"pagesize"`
  26. ManagementId int64 `json:"managementid"`
  27. }
  28. type ManagementBh struct {
  29. ManagementID int64 `json:"managementid"` //脖环管理ID
  30. Code string `json:"code"` //脖环编码
  31. Date string `json:"date"` //日期
  32. }
  33. type GetManagementBhRes struct {
  34. List []*ManagementBh `json:"list"`
  35. Total int64 `json:"total"`
  36. }