package cn.com.basic.face.discern.entity;
|
|
import java.io.Serializable;
|
|
import cn.com.basic.face.discern.common.BaseEntity;
|
|
/**
|
* 数据字典
|
* ,双向
|
*/
|
public class Dictionary extends BaseEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
public static final String MODEL_NAME = "Dictionary";
|
|
public static final class FieldNames {
|
/**
|
* 主键
|
*/
|
public static final String dictId = "dictId";
|
/**
|
* 编码
|
*/
|
public static final String sn = "sn";
|
/**
|
* 名称
|
*/
|
public static final String name = "name";
|
/**
|
* 类型
|
*/
|
public static final String type = "type";
|
/**
|
* 排序
|
*/
|
public static final String orderBy = "orderBy";
|
/**
|
* 父级id
|
*/
|
public static final String pid = "pid";
|
/**
|
* 备注
|
*/
|
public static final String remark = "remark";
|
/**
|
* 公司主键
|
*/
|
public static final String compnayId = "compnayId";
|
/**
|
* 同步时间
|
*/
|
public static final String updateTime = "updateTime";
|
/**
|
* 是否同步
|
*/
|
public static final String isSynchron = "isSynchron";
|
/**
|
* 设备所在机构id
|
*/
|
public static final String deviceCompanyId = "deviceCompanyId";
|
}
|
|
// 主键
|
private String dictId;
|
// 编码
|
private String sn;
|
// 名称
|
private String name;
|
// 类型
|
private String type;
|
// 排序
|
private String orderBy;
|
// 父级id
|
private String pid;
|
// 备注
|
private String remark;
|
// 公司主键
|
private String compnayId;
|
|
//同步时间
|
private String updateTime;
|
// 是否同步
|
private String isSynchron;
|
// 设备所在机构id
|
private String deviceCompanyId;
|
|
private String isValid;
|
|
private String createTime;
|
|
public String getIsValid() {
|
return isValid;
|
}
|
|
public void setIsValid(String isValid) {
|
this.isValid = isValid;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
/**
|
* Get 主键
|
*/
|
public String getDictId() {
|
return dictId;
|
}
|
|
/**
|
* Set 主键
|
*/
|
public void setDictId(String dictId) {
|
this.dictId = dictId;
|
}
|
|
/**
|
* Get 编码
|
*/
|
public String getSn() {
|
return sn;
|
}
|
|
/**
|
* Set 编码
|
*/
|
public void setSn(String sn) {
|
this.sn = sn;
|
}
|
|
/**
|
* Get 名称
|
*/
|
public String getName() {
|
return name;
|
}
|
|
/**
|
* Set 名称
|
*/
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
/**
|
* Get 类型
|
*/
|
public String getType() {
|
return type;
|
}
|
|
/**
|
* Set 类型
|
*/
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
/**
|
* Get 排序
|
*/
|
public String getOrderBy() {
|
return orderBy;
|
}
|
|
/**
|
* Set 排序
|
*/
|
public void setOrderBy(String orderBy) {
|
this.orderBy = orderBy;
|
}
|
|
/**
|
* Get 父级id
|
*/
|
public String getPid() {
|
return pid;
|
}
|
|
/**
|
* Set 父级id
|
*/
|
public void setPid(String pid) {
|
this.pid = pid;
|
}
|
|
/**
|
* Get 备注
|
*/
|
public String getRemark() {
|
return remark;
|
}
|
|
/**
|
* Set 备注
|
*/
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
/**
|
* Get 公司主键
|
*/
|
public String getCompnayId() {
|
return compnayId;
|
}
|
|
/**
|
* Set 公司主键
|
*/
|
public void setCompnayId(String compnayId) {
|
this.compnayId = compnayId;
|
}
|
|
/**
|
* Get 同步时间
|
*/
|
public String getUpdateTime() {
|
return updateTime;
|
}
|
|
/**
|
* Set 同步时间
|
*/
|
public void setUpdateTime(String updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
/**
|
* Get 是否同步
|
* ,Y--已同步,N--未同步
|
*/
|
public String getIsSynchron() {
|
return isSynchron;
|
}
|
|
/**
|
* Set 是否同步
|
* ,Y--已同步,N--未同步
|
*/
|
public void setIsSynchron(String isSynchron) {
|
this.isSynchron = isSynchron;
|
}
|
|
/**
|
* Get 设备所在机构id
|
*/
|
public String getDeviceCompanyId() {
|
return deviceCompanyId;
|
}
|
|
/**
|
* Set 设备所在机构id
|
*/
|
public void setDeviceCompanyId(String deviceCompanyId) {
|
this.deviceCompanyId = deviceCompanyId;
|
}
|
|
public String toString() {
|
return
|
",主键 =" + dictId + ",编码 =" + sn + ",名称 =" + name +
|
",类型 =" + type + ",排序 =" + orderBy + ",父级id =" + pid +
|
",备注 =" + remark + ",公司主键 =" + compnayId + ",同步时间 =" + updateTime +
|
",是否同步 =" + isSynchron + ",设备所在机构id ="+ deviceCompanyId;
|
}
|
}
|