request_data.go 710 B

12345678910111213141516171819202122232425
  1. package models
  2. type ClassRequest struct {
  3. BigFeedClassId string `json:"bigfeedclassid"`
  4. BigFeedClassName string `json:"bigfeedclassname"`
  5. Enable int32 `json:"enable"`
  6. FcCode string `json:"fccode"`
  7. FcName string `json:"fcname"`
  8. PastureId string `json:"pastureid"`
  9. Id int32 `json:"id"`
  10. }
  11. type ClassCowRequest struct {
  12. ParentId string `json:"parentid"`
  13. ParentName string `json:"parentname"`
  14. PastureId string `json:"pastureid"`
  15. ClassCode string `json:"classcode"`
  16. ClassName string `json:"classname"`
  17. Enable int32 `json:"enable"`
  18. }
  19. type ClassDeleteRequest struct {
  20. PastureId string `json:"pastureid"`
  21. Id string `json:"id"`
  22. }