mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-27 11:21:07 +08:00
15 lines
270 B
Go
15 lines
270 B
Go
package model
|
|
|
|
// 分页参数
|
|
type PageParam struct {
|
|
PageNum int `json:"pageNum"`
|
|
PageSize int `json:"pageSize"`
|
|
Params string `json:"params"`
|
|
}
|
|
|
|
// 分页结果
|
|
type PageResult struct {
|
|
Total int64 `json:"total"`
|
|
List interface{} `json:"list"`
|
|
}
|