9 lines
194 B
Go
Raw Normal View History

2025-06-19 21:53:00 +08:00
package response
type PageResult struct {
List interface{} `json:"list"`
Total int64 `json:"total"`
Page int `json:"page"`
PageSize int `json:"pageSize"`
}