Files

9 lines
150 B
Go
Raw Permalink Normal View History

2026-01-18 18:20:40 +08:00
package response
// 分页结果
type PageResult struct {
Page int `json:"page"`
PageSize int `json:"pageSize"`
Total int `json:"total"`
}