com.obatis.config.request.RequestConstant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obatis-orm Show documentation
Show all versions of obatis-orm Show documentation
obatis-orm, apply database project
The newest version!
package com.obatis.config.request;
public class RequestConstant {
/**
* 分页默认显示页码
*/
public static final int DEFAULT_PAGE = 1;
/**
* 分页默认显示行数
*/
public static final int DEFAULT_ROWS = 10;
/**
* 0 排序升序
*/
public static final int ORDER_ASC = 0;
/**
* 1 排序降序
*/
public static final int ORDER_DESC = 1;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy