PageQueryConstants.java 347 B

123456789101112131415161718
  1. package com.persagy.fm.common.constant;
  2. /**
  3. * 分页查询常量
  4. *
  5. * @author lixing
  6. * @version V1.0 2021/3/24 3:05 下午
  7. **/
  8. public class PageQueryConstants {
  9. /**
  10. * 默认查询第一页
  11. */
  12. public static final int DEFAULT_PAGE = 1;
  13. /**
  14. * 默认查询10条
  15. */
  16. public static final int DEFAULT_SIZE = 10;
  17. }