Files
KubePi/pkg/api/v1/constant.go
2021-06-03 17:59:37 +08:00

12 lines
157 B
Go

package v1
const (
PageSize = "pageSize"
PageNum = "pageNum"
)
type Page struct {
Total int `json:"total"`
Items interface{} `json:"items"`
}