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

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

  name("name","角色名"),

  status("status","状态  no:禁用   yes:正常"),

  remark("remark","备注");

  public static final String tb = "sys_role";

  private final String desc;

  private final String oriColName;

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