factory.go 1.4 KB

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