pasture_data.go 274 B

123456789101112
  1. package model
  2. type DistributeFeedFormulaRequest struct {
  3. PastureId int64 `json:"pasture_id"`
  4. Body []*FeedFormula `json:"body"`
  5. }
  6. type PastureResponse struct {
  7. Code int32 `json:"code"`
  8. Msg string `json:"msg"`
  9. Data interface{} `json:"data"`
  10. }