12345678910111213141516171819202122232425 |
- package models
- type ClassRequest struct {
- BigFeedClassId string `json:"bigfeedclassid"`
- BigFeedClassName string `json:"bigfeedclassname"`
- Enable int32 `json:"enable"`
- FcCode string `json:"fccode"`
- FcName string `json:"fcname"`
- PastureId string `json:"pastureid"`
- Id int32 `json:"id"`
- }
- type ClassCowRequest struct {
- ParentId string `json:"parentid"`
- ParentName string `json:"parentname"`
- PastureId string `json:"pastureid"`
- ClassCode string `json:"classcode"`
- ClassName string `json:"classname"`
- Enable int32 `json:"enable"`
- }
- type ClassDeleteRequest struct {
- PastureId string `json:"pastureid"`
- Id string `json:"id"`
- }
|