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

net.wicp.tams.cas.bean.constant.ColsSysGlobal 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 ColsSysGlobal {
  id("id",""),

  configGloble("config_globle","分组"),

  lastUsername("last_username","验证类型"),

  lastUpdatetime("last_updatetime","排序");

  public static final String tb = "sys_global";

  private final String desc;

  private final String oriColName;

  private ColsSysGlobal(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