public.go 827 B

123456789101112131415161718192021222324252627282930313233343536
  1. package v1
  2. type GetBarListReq struct {
  3. Index int64 `json:"index"`
  4. PageSize int64 `json:"pagesize"`
  5. Pastureid string `json:"pastureid"`
  6. BarName string `json:"barname"`
  7. }
  8. type BarList struct {
  9. Id string `json:"id" `
  10. Pastureid string `json:"pastureid"`
  11. Bname string `json:"bname"` //栏舍名称
  12. Bcode string `json:"bcode"` //栏舍编码
  13. }
  14. type GetBarListRes struct {
  15. List []*BarList `json:"list"`
  16. Total int64 `json:"total"`
  17. }
  18. type GetPastureListReq struct {
  19. Index int64 `json:"index"`
  20. PageSize int64 `json:"pagesize"`
  21. }
  22. type PastureList struct {
  23. PastureCode string `json:"pasturecode"`
  24. Pastureid string `json:"pastureid"`
  25. PastureName string `json:"pasturename"`
  26. }
  27. type GetPastureListRes struct {
  28. List []*PastureList `json:"list"`
  29. Total int64 `json:"total"`
  30. }