mirror of
https://gitee.com/xiangheng/x_admin.git
synced 2025-09-27 12:32:19 +08:00
10 lines
281 B
Go
10 lines
281 B
Go
package response
|
|
|
|
// PageResp 分页返回值
|
|
type PageResp struct {
|
|
Count int64 `json:"count"` // 总数
|
|
PageNo int `json:"pageNo"` // 每页数量
|
|
PageSize int `json:"pageSize"` // 每页Size
|
|
Lists interface{} `json:"lists"` // 数据
|
|
}
|