diff --git a/src/com/platform/entities/PreDataInfo.java b/src/com/platform/entities/PreDataInfo.java index ecf5b320..e7594d20 100644 --- a/src/com/platform/entities/PreDataInfo.java +++ b/src/com/platform/entities/PreDataInfo.java @@ -6,7 +6,7 @@ public class PreDataInfo { private String isupdate = "-"; /** 是否采集 */ - private String iscollect = "否"; + private String collection = "否"; /** 市名称 */ private String cityName; @@ -24,7 +24,7 @@ public class PreDataInfo { private String sysName; /** 系统版本信息 */ - private int dataVersion; + private String dataVersion; /** 投入使用时间 */ private String beginUseTime; @@ -33,10 +33,10 @@ public class PreDataInfo { private String functionDetails; /** 管理部门联系人 */ - private String departmentConcactor; + private String departmentManager; /** 联系方式 */ - private String concacts; + private String managerContacts; /** 信息系统开发商全称 */ private String developerFullName; @@ -92,17 +92,17 @@ public class PreDataInfo { } /** - * @return the iscollect + * @return the collection */ - public String getIscollect() { - return iscollect; + public String getCollection() { + return collection; } /** - * @param iscollect the iscollect to set + * @param collection the collection to set */ - public void setIscollect(String iscollect) { - this.iscollect = iscollect; + public void setCollection(String collection) { + this.collection = collection; } /** @@ -178,14 +178,14 @@ public class PreDataInfo { /** * @return the dataVersion */ - public int getDataVersion() { + public String getDataVersion() { return dataVersion; } /** * @param dataVersion the dataVersion to set */ - public void setDataVersion(int dataVersion) { + public void setDataVersion(String dataVersion) { this.dataVersion = dataVersion; } @@ -218,31 +218,31 @@ public class PreDataInfo { } /** - * @return the departmentConcactor + * @return the departmentManager */ - public String getDepartmentConcactor() { - return departmentConcactor; + public String getDepartmentManager() { + return departmentManager; } /** - * @param departmentConcactor the departmentConcactor to set + * @param departmentManager the departmentManager to set */ - public void setDepartmentConcactor(String departmentConcactor) { - this.departmentConcactor = departmentConcactor; + public void setDepartmentManager(String departmentManager) { + this.departmentManager = departmentManager; } /** - * @return the concacts + * @return the managerContacts */ - public String getConcacts() { - return concacts; + public String getManagerContacts() { + return managerContacts; } /** - * @param concacts the concacts to set + * @param managerContacts the managerContacts to set */ - public void setConcacts(String concacts) { - this.concacts = concacts; + public void setManagerContacts(String managerContacts) { + this.managerContacts = managerContacts; } /** diff --git a/src/com/platform/entities/PreDataInfoFull.java b/src/com/platform/entities/PreDataInfoFull.java new file mode 100644 index 00000000..eb4246cc --- /dev/null +++ b/src/com/platform/entities/PreDataInfoFull.java @@ -0,0 +1,37 @@ +package com.platform.entities; + +public class PreDataInfoFull extends PreDataInfo { + + private String sysCode; + + private String updateTime; + + /** + * @return the sysCode + */ + public String getSysCode() { + return sysCode; + } + + /** + * @param sysCode the sysCode to set + */ + public void setSysCode(String sysCode) { + this.sysCode = sysCode; + } + + /** + * @return the updateTime + */ + public String getUpdateTime() { + return updateTime; + } + + /** + * @param updateTime the updateTime to set + */ + public void setUpdateTime(String updateTime) { + this.updateTime = updateTime; + } + +}