variety.go 304 B

1234567891011121314
  1. package request
  2. type AddVarietyReq struct {
  3. VarietyName string `description:"品种名称"`
  4. }
  5. type EditVarietyReq struct {
  6. ChartVarietyId int `description:"品种id"`
  7. VarietyName string `description:"品种名称"`
  8. }
  9. type DelVarietyReq struct {
  10. ChartVarietyId int `description:"品种id"`
  11. }