- package request
- type AddVarietyReq struct {
- VarietyName string `description:"品种名称"`
- }
- type EditVarietyReq struct {
- ChartVarietyId int `description:"品种id"`
- VarietyName string `description:"品种名称"`
- }
- type DelVarietyReq struct {
- ChartVarietyId int `description:"品种id"`
- }
|