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

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

  parentId("parent_id","父组织id"),

  orgIdPath("org_id_path","组织id的路径"),

  orgName("org_name","组织名称"),

  orgCode("org_code","组织编码"),

  unitType("unit_type","virtual:虚拟   entity:实体  manage:管理"),

  address("address","地址"),

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

  public static final String tb = "sys_org";

  private final String desc;

  private final String oriColName;

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