neckringlisting.go 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package v1
  2. import "time"
  3. type GetNeckRingListingReq struct {
  4. Index int64 `json:"index"`
  5. PageSize int64 `json:"pagesize"`
  6. Code int64 `json:"code"` //脖环编码
  7. Status int64 `json:"status"` //脖环状态
  8. Cattle string `json:"cattle"` //牛号
  9. BarName string `json:"barname"` //栏舍名称
  10. PurchaseStart string `json:"purchasestart"` //购入开始日期
  11. PurchaseEnd string `json:"purchaseend"` //购入结束日期
  12. ManufactureStart string `json:"manufacturestart"` //生产开始日期
  13. ManufactureEnd string `json:"manufactureend"` //生产结束日期
  14. RecallID int64 `json:"recallid"` //召回记录
  15. FactoryID int64 `json:"factoryid"` //出厂登记
  16. }
  17. type GetNeckRingListingRes struct {
  18. Neckring []*NeckRingListing `json:"list"`
  19. Total int64 `json:"total"`
  20. }
  21. type NeckRingListing struct {
  22. Id int64 `json:"id"`
  23. Name string `json:"name"` //脖环名称
  24. Code int64 `json:"code"` //脖环编码
  25. Status int64 `json:"status"` //脖环状态
  26. Cattle string `json:"cattle"` //牛号
  27. BarId int64 `json:"barid"` //栏舍id
  28. Batch string `json:"batch"` //批次
  29. BarName string `json:"barname"` //栏舍名称
  30. PurchaseDate string `json:"purchasedate"` //购入日期
  31. ManufactureDate string `json:"manufacturedate"` //生产日期
  32. }
  33. type AddNeckRingListingReq struct {
  34. Name string `json:"name"` //脖环名称
  35. Code string `json:"code"` //脖环编码
  36. Status int64 `json:"status"` //脖环状态
  37. Cattle int64 `json:"cattle"` //牛号
  38. BarId int64 `json:"barid"` //栏舍id
  39. BarName string `json:"barname"` //栏舍名称
  40. PurchaseDate time.Time `json:"purchasedate"` //购入日期
  41. ManufactureDate time.Time `json:"manufacturedate"` //生产日期
  42. }