Files
x_admin/server/core/response/common.go
xiangheng 784d9bdd4a ToInt64
2024-11-07 15:40:14 +08:00

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"` // 数据
}