package com.persagy.fm.common.constant; /** * 分页查询常量 * * @author lixing * @version V1.0 2021/3/24 3:05 下午 **/ public class PageQueryConstants { /** * 默认查询第一页 */ public static final int DEFAULT_PAGE = 1; /** * 默认查询10条 */ public static final int DEFAULT_SIZE = 10; }