2026-05-02 13:02:38 +08:00

9 lines
189 B
Go

package response
type Page struct {
Items interface{} `json:"items"`
Page int `json:"page"`
PageSize int `json:"pageSize"`
Total int64 `json:"total"`
}