You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
466 B
22 lines
466 B
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"` |
|
}
|
|
|