mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
23 lines
466 B
Go
23 lines
466 B
Go
package model
|
|
|
|
// SourceSearch params
|
|
type SourceSearch struct {
|
|
Type string `form:"type"`
|
|
Keyword string `form:"keyword"`
|
|
PageSize int `form:"pageSize"`
|
|
PageNum int `form:"pageNum"`
|
|
}
|
|
|
|
// Search params
|
|
type Search struct {
|
|
SeasonID int64 `form:"season_id"`
|
|
ItemsID int64 `form:"items_id"`
|
|
}
|
|
|
|
// MatchOperate params
|
|
type MatchOperate struct {
|
|
OpType int8 `form:"op_type"`
|
|
SeasonID int64 `form:"season_id"`
|
|
ItemsID int64 `form:"items_id"`
|
|
}
|