mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
14 lines
230 B
Go
14 lines
230 B
Go
|
|
package base
|
||
|
|
|
||
|
|
// 分页参数
|
||
|
|
type PageParam struct {
|
||
|
|
PageNum int `json:"pageNum"`
|
||
|
|
PageSize int `json:"pageSize"`
|
||
|
|
}
|
||
|
|
|
||
|
|
// 分页结果
|
||
|
|
type PageResult struct {
|
||
|
|
Total int64 `json:"total"`
|
||
|
|
List interface{} `json:"list"`
|
||
|
|
}
|