cn.sylinx.hbatis.ext.xmapper.xml.SqlForUse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-xmapper Show documentation
Show all versions of hbatis-xmapper Show documentation
hbatis-xmapper is a simple orm framework, extends hbatis-core
The newest version!
package cn.sylinx.hbatis.ext.xmapper.xml;
public enum SqlForUse {
UPDATE("update", "更新"), QUERY("query", "查询"), INSERT("insert",
"插入"), DELETE("delete", "删除");
private String code;
private String name;
private SqlForUse(String code, String name) {
this.code = code;
this.name = name;
}
public String getCode() {
return code;
}
public String getName() {
return name;
}
}