cn.tangjiabao.halodb.core.dialect.Dialect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of haloDb Show documentation
Show all versions of haloDb Show documentation
Orm whitch The highest development efficiency and Efficiency is the fastest
package cn.tangjiabao.halodb.core.dialect;
/**
*方言接口
* @author [email protected]
* @date 2015-6-14 下午12:46:50
*/
public interface Dialect {
/**
* 获取分页的sql
* @param sql
* @param beginNo
* @param endNo
* @return 分页sql
*/
String getPageSql(String sql, int beginNo, int endNo);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy