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

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

  groupName("group_name",""),

  orgId("org_id",""),

  tenantId("tenant_id","租户id");

  public static final String tb = "sys_group";

  private final String desc;

  private final String oriColName;

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