1234567891011121314151617181920212223242526 |
- package wine
- type queryParam struct {
- Cond string `json:"cond"`
- Page int `json:"page"`
- Limit int `json:"limit"`
- }
- type addParam struct {
- Name string
- Price uint16
- Degree uint16
- Density uint16
- Image string
- Describe string
- }
- type updateParam struct {
- Id uint16
- Name string
- Price uint16
- Degree uint16
- Density uint16
- Image string
- Describe string
- }
|