| | |
| | |
|
| | | /**
|
| | | * 数据字典
|
| | | * ,双向
|
| | | */
|
| | | public class Dictionary extends BaseEntity implements Serializable {
|
| | |
|
| | |
| | | /**
|
| | | * 主键
|
| | | */
|
| | | public static final String id = "id";
|
| | | public static final String dictId = "dictId";
|
| | | /**
|
| | | * 编码
|
| | | */
|
| | |
| | | * 备注
|
| | | */
|
| | | 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 id;
|
| | | private String dictId;
|
| | | // 编码
|
| | | private String sn;
|
| | | // 名称
|
| | |
| | | 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 getId() {
|
| | | return id;
|
| | | public String getDictId() {
|
| | | return dictId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 主键
|
| | | */
|
| | | public void setId(String id) {
|
| | | this.id = id;
|
| | | public void setDictId(String dictId) {
|
| | | this.dictId = dictId;
|
| | | }
|
| | |
|
| | | /**
|
| | |
| | | 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
|
| | | ",主键 =" + id + ",编码 =" + sn + ",名称 =" + name + |
| | | ",主键 =" + dictId + ",编码 =" + sn + ",名称 =" + name + |
| | | ",类型 =" + type + ",排序 =" + orderBy + ",父级id =" + pid +
|
| | | ",备注 =" + remark ;
|
| | | ",备注 =" + remark + ",公司主键 =" + compnayId + ",同步时间 =" + updateTime + |
| | | ",是否同步 =" + isSynchron + ",设备所在机构id ="+ deviceCompanyId;
|
| | | }
|
| | | }
|