cn.asens.entity.Institution Maven / Gradle / Ivy
package cn.asens.entity;
/**
* @author Asens
*/
public class Institution {
public final static String ORG_KEY = "org_key";
public final static String IS_TRY = "is_try";
public final static String ORG_TYPE = "org_type";
public final static String AREA = "area";
public final static String ORG_CHANNEL = "org_channel";
/**
* 机构id
*/
private Integer institutionId;
/**
* 机构名称
*/
private String institutionName;
/**
* 业务系统分配的appId
*/
private Integer appId;
/**
* 扩展信息:json
* orgKey:机构唯一标识符(古联专用)
* isTry:是否是试用机构 0:否 1:是
* orgType:机构类型 图书馆,研究机构之类的 自己定义
* area:地域
* orgChannel:渠道商
*/
private String otherInfo;
public Integer getInstitutionId() {
return institutionId;
}
public void setInstitutionId(Integer institutionId) {
this.institutionId = institutionId;
}
public String getInstitutionName() {
return institutionName;
}
public void setInstitutionName(String institutionName) {
this.institutionName = institutionName;
}
public Integer getAppId() {
return appId;
}
public void setAppId(Integer appId) {
this.appId = appId;
}
public String getOtherInfo() {
return otherInfo;
}
public void setOtherInfo(String otherInfo) {
this.otherInfo = otherInfo;
}
}