9 lines
194 B
Go
Raw Normal View History

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