recall.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. package v1
  2. type AddRecallReq struct {
  3. Pastureid string `json:"pastureid"`
  4. Count int64 `json:"count"`
  5. FactoryID []int64 `json:"factoryid"` //召回id
  6. }
  7. type GetRecallReq struct {
  8. Index int64 `json:"index"`
  9. PageSize int64 `json:"pagesize"`
  10. Batch string `json:"batch"` //批次
  11. StartCount int64 `json:"startcount"` //重量
  12. EndCount int64 `json:"endcount"`
  13. CreateName string `json:"createname"` //登记人
  14. StartDate string `json:"startdate"` //登记时间
  15. EndDate string `json:"enddate"`
  16. FactoryID int64 `json:"recallid"` //召回id
  17. Pastureid string `json:"pastureid"`
  18. Replacement int64 `json:"replacement"` //置换时查看传 1
  19. }
  20. type Recall struct {
  21. Id int64 `json:"id"`
  22. PastureId string `json:"pastureid"` //牧场id
  23. PastureName string `json:"pasturename"` //牧场名称
  24. Count int64 `json:"count"` //出厂数量
  25. Batch string `json:"batch"` //出厂批次
  26. Recall int64 `json:"recall"` //关联召回批次数
  27. CreateName string `json:"createname"` //登记人
  28. CreateTime string `json:"createtime"` //登记时间
  29. }
  30. type GetRecallRes struct {
  31. List []*Recall `json:"list"`
  32. Total int64 `json:"total"`
  33. }