gf-common/utils/model.go

13 lines
204 B
Go

package utils
type Paginator[I any] struct {
Items []I
Total int
IsSimple bool
}
type Paginate struct {
Limit int `d:"20" json:"limit" v:"max:50"`
Page int `d:"1" dc:"页码" json:"page"`
}