1234567891011121314151617181920 |
- package dto
- type Pagination struct {
- Page int `form:"page" example:"1"` // 页数
- PageSize int `form:"page_z" example:"10"` // 每页条数
- }
- func (m *Pagination) GetPageIndex() int {
- if m.Page <= 0 {
- m.Page = 1
- }
- return m.Page
- }
- func (m *Pagination) GetPageSize() int {
- if m.PageSize <= 0 {
- m.PageSize = 10
- }
- return m.PageSize
- }
|