mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
19 lines
347 B
Go
19 lines
347 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// ArgAllowanceList req.
|
||
|
|
type ArgAllowanceList struct {
|
||
|
|
State int8 `form:"state"`
|
||
|
|
}
|
||
|
|
|
||
|
|
// ArgCouponPage req .
|
||
|
|
type ArgCouponPage struct {
|
||
|
|
State int8 `form:"state"`
|
||
|
|
Pn int `form:"pn"`
|
||
|
|
Ps int `form:"ps"`
|
||
|
|
}
|
||
|
|
|
||
|
|
// ArgPrizeDraw struct .
|
||
|
|
type ArgPrizeDraw struct {
|
||
|
|
CardType int8 `form:"card_type" validate:"min=0,gte=0,lte=2"`
|
||
|
|
}
|