16 lines
361 B
Go
16 lines
361 B
Go
package param
|
|
|
|
type GetWineList struct {
|
|
page
|
|
Category string `json:"category" form:"category"` // 分类
|
|
UserId int `json:"userId" form:"userId"` // 用户ID
|
|
}
|
|
|
|
type GetWineListByUser struct {
|
|
page
|
|
Category string `json:"category" form:"category"` // 分类
|
|
UserId int `json:"userId" form:"userId"` // 用户ID
|
|
}
|
|
|
|
type AddWine struct{}
|