
sf.database.template.TemplateConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sorm Show documentation
Show all versions of sorm Show documentation
java jpa tool for spring
The newest version!
package sf.database.template;
/**
* 模板常量
*/
public interface TemplateConstants {
/**
* 塞入上下文中的list常量
*/
String LIST_KEY = "_list_key";
/**
* 塞入上下文中的执行命令
*/
String EXECUTE_KEY = "_EXECUTE_KEY";
/**
* 获取查询总数
*/
String EXECUTE_VALUE_COUNT = "_EXECUTE_VALUE_COUNT";
/**
* 获取查询列表
*/
String EXECUTE_VALUE_LIST = "_EXECUTE_VALUE_LIST";
String SQL_TEMPLATE_MAP_KEY = "_SQL_TEMPLATE_MAP_";
String SQL_PARA_KEY = "_SQL_PARA_";
String PARA_ARRAY_KEY = "_PARA_ARRAY_"; // 此参数保持不动,已被用于模板取值 _PARA_ARRAY_[n]
String SQL_COUNT_KEY = "_SQL_COUNT_";//统计sql总数
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy