Lee-WineList/model/param/wine.go

14 lines
338 B
Go
Raw Normal View History

2023-04-24 17:34:38 +08:00
package param
2023-04-27 15:56:12 +08:00
type GetWineList struct {
page
Category string `json:"category" form:"category"` // 分类
UserId int `json:"userId" form:"userId"` // 用户ID
}
2023-04-24 17:34:38 +08:00
2023-04-27 15:56:12 +08:00
type GetWineListByUser struct {
page
Category string `json:"category" form:"category"` // 分类
UserId int `json:"userId" form:"userId"` // 用户ID
2023-04-24 17:34:38 +08:00
}