![JAR search and dependency download from the Maven repository](/logo.png)
net.wicp.tams.cas.bean.constant.ColsSysResource Maven / Gradle / Ivy
package net.wicp.tams.cas.bean.constant;
import java.lang.String;
public enum ColsSysResource {
id("id",""),
resCode("res_code",""),
resName("res_name",""),
resValue("res_value",""),
resType("res_type",""),
icon("icon",""),
resLevel("res_level",""),
isEdit("is_edit",""),
parentId("parent_id",""),
showOrder("show_order",""),
remark("remark",""),
isSync("is_sync","是否由程序同步"),
bound1("bound1",""),
bound2("bound2",""),
bound3("bound3",""),
bound4("bound4",""),
bound5("bound5",""),
bound6("bound6",""),
bound7("bound7",""),
bound8("bound8",""),
bound9("bound9","");
public static final String tb = "sys_resource";
private final String desc;
private final String oriColName;
private ColsSysResource(String oriColName, String desc) {
this.oriColName = oriColName;
this.desc = desc;
}
public String getDesc() {
return this.desc;
}
public String getOriColName() {
return this.oriColName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy