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

cn.sylinx.hbatis.ext.xmapper.xml.SqlForUse Maven / Gradle / Ivy

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;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy