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

net.wicp.tams.cas.bean.constant.ColsSysOptgroup Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package net.wicp.tams.cas.bean.constant;

import java.lang.String;

public enum ColsSysOptgroup {
  id("id",""),

  remark("remark",""),

  parentId("parent_id",""),

  isEdit("is_edit",""),

  isValid("is_valid","LIST      下拉列表,值放入字典表的ID       \r\n"
      + "               INPUT    输入值   \r\n"
      + "               CLASS    自定义类规则");

  public static final String tb = "sys_optgroup";

  private final String desc;

  private final String oriColName;

  private ColsSysOptgroup(String oriColName, String desc) {
    this.oriColName = oriColName;
    this.desc = desc;
  }

  public String getDesc() {
    return this.desc;
  }

  public String getOriColName() {
    return this.oriColName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy