mirror of
https://github.com/himool/HimoolERP.git
synced 2026-01-20 08:08:56 +08:00
7 lines
178 B
Python
7 lines
178 B
Python
from rest_framework.pagination import PageNumberPagination
|
|
|
|
|
|
class GoodsPagination(PageNumberPagination):
|
|
page_size = 20
|
|
page_query_param = 'page'
|
|
max_page_size = 20
|