goweb-gin-demo/model/common/response/common.go

9 lines
194 B
Go
Raw Normal View History

2021-10-29 14:39:50 +08:00
package response
type PageResult struct {
List interface{} `json:"list"`
Total int64 `json:"total"`
Page int `json:"page"`
PageSize int `json:"pageSize"`
}