package wine type queryParam struct { Cond string `json:"cond"` Page int `json:"page"` Limit int `json:"limit"` } type addParam struct { Name string `json:"name"` Price uint16 `json:"price"` Degree uint16 `json:"degree"` Density uint16 `json:"density"` Image string `json:"image"` Describe string `json:"describe"` } type updateParam struct { Id uint16 `json:"id"` Name string `json:"name"` Price uint16 `json:"price"` Degree uint16 `json:"degree"` Density uint16 `json:"density"` Image string `json:"image"` Describe string `json:"describe"` }