All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.beetl.sql.clazz.kit.AutoSQLEnum Maven / Gradle / Ivy

There is a newer version: 3.30.13-RELEASE
Show newest version
package org.beetl.sql.clazz.kit;

/**
 * 代替 Constants 类. 
* create time : 2017-05-26 14:32 * * @author [email protected] */ public enum AutoSQLEnum { SELECT_BY_ID("$selectById"), SELECT_BY_IDS("$selectByIds"), SELECT_BY_TEMPLATE("$selectByTemplate"), SELECT_COUNT_BY_TEMPLATE("$selectCountByTemplate"), DELETE_BY_ID("$delById"), SELECT_ALL("$selectAll"), UPDATE_ALL("$updateAll"), UPDATE_BY_ID("$updateById"), UPDATE_RAW_BY_ID("$updateRawById"), UPDATE_TEMPLATE_BY_ID("$updateTemplateById"), INSERT("$insert"), INSERT_TEMPLATE("$insertTemplate"), DELETE_TEMPLATE_BY_ID("$deleteTemplateById"), LOCK_BY_ID("$selectByIdForUpdate"), EXIST_BY_ID("$existById"), ; private final String classSQL; AutoSQLEnum(String classSQL) { this.classSQL = classSQL; } public String getClassSQL() { return classSQL; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy