go_gin_tmpl/core/response_page.go

11 lines
335 B
Go
Raw Normal View History

2022-05-09 09:00:14 +08:00
package core
// PageData 分页数据通用结构体
type PageData struct {
Current int `json:"current"` // 当前页码
Size int `json:"size"` // 每页数量
Total int64 `json:"total"` // 总数
TotalPage int `json:"total_page"` // 总页数
Records any `json:"records"` // 返回数据
}