fusenapi/constants/paging.go

14 lines
212 B
Go
Raw Normal View History

2023-06-27 09:04:58 +00:00
package constants
// 分页默认当前页
const DEFAULT_PAGE = 1
// 默认每页数量
const DEFAULT_PAGE_SIZE = 20
2023-06-29 05:59:55 +00:00
// 最大每页显示数量
const MAX_PAGE_SIZE = 300
// 最大分页
const MAX_PAGE = 100