14 lines
427 B
Go
14 lines
427 B
Go
package requests
|
|
|
|
type CaseRequest struct {
|
|
GetCasePage // 获取列表-分页
|
|
}
|
|
|
|
// GetCasePage 获取列表-分页
|
|
type GetCasePage struct {
|
|
Page int `json:"page" form:"page" label:"页码"`
|
|
PageSize int `json:"page_size" form:"page_size" label:"每页个数"`
|
|
PlatformId int64 `json:"platform_id" form:"platform_id" label:"平台id"`
|
|
Keyword string `json:"keyword" form:"keyword" label:"关键词"`
|
|
}
|