web_backend_develope
chenlw 9 years ago
parent 53b0c1137c
commit 1e424e71e0

@ -6,7 +6,7 @@ public class PreDataInfo {
private String isupdate = "-"; private String isupdate = "-";
/** 是否采集 */ /** 是否采集 */
private String iscollect = "否"; private String collection = "否";
/** 市名称 */ /** 市名称 */
private String cityName; private String cityName;
@ -24,7 +24,7 @@ public class PreDataInfo {
private String sysName; private String sysName;
/** 系统版本信息 */ /** 系统版本信息 */
private int dataVersion; private String dataVersion;
/** 投入使用时间 */ /** 投入使用时间 */
private String beginUseTime; private String beginUseTime;
@ -33,10 +33,10 @@ public class PreDataInfo {
private String functionDetails; private String functionDetails;
/** 管理部门联系人 */ /** 管理部门联系人 */
private String departmentConcactor; private String departmentManager;
/** 联系方式 */ /** 联系方式 */
private String concacts; private String managerContacts;
/** 信息系统开发商全称 */ /** 信息系统开发商全称 */
private String developerFullName; private String developerFullName;
@ -92,17 +92,17 @@ public class PreDataInfo {
} }
/** /**
* @return the iscollect * @return the collection
*/ */
public String getIscollect() { public String getCollection() {
return iscollect; return collection;
} }
/** /**
* @param iscollect the iscollect to set * @param collection the collection to set
*/ */
public void setIscollect(String iscollect) { public void setCollection(String collection) {
this.iscollect = iscollect; this.collection = collection;
} }
/** /**
@ -178,14 +178,14 @@ public class PreDataInfo {
/** /**
* @return the dataVersion * @return the dataVersion
*/ */
public int getDataVersion() { public String getDataVersion() {
return dataVersion; return dataVersion;
} }
/** /**
* @param dataVersion the dataVersion to set * @param dataVersion the dataVersion to set
*/ */
public void setDataVersion(int dataVersion) { public void setDataVersion(String dataVersion) {
this.dataVersion = dataVersion; this.dataVersion = dataVersion;
} }
@ -218,31 +218,31 @@ public class PreDataInfo {
} }
/** /**
* @return the departmentConcactor * @return the departmentManager
*/ */
public String getDepartmentConcactor() { public String getDepartmentManager() {
return departmentConcactor; return departmentManager;
} }
/** /**
* @param departmentConcactor the departmentConcactor to set * @param departmentManager the departmentManager to set
*/ */
public void setDepartmentConcactor(String departmentConcactor) { public void setDepartmentManager(String departmentManager) {
this.departmentConcactor = departmentConcactor; this.departmentManager = departmentManager;
} }
/** /**
* @return the concacts * @return the managerContacts
*/ */
public String getConcacts() { public String getManagerContacts() {
return concacts; return managerContacts;
} }
/** /**
* @param concacts the concacts to set * @param managerContacts the managerContacts to set
*/ */
public void setConcacts(String concacts) { public void setManagerContacts(String managerContacts) {
this.concacts = concacts; this.managerContacts = managerContacts;
} }
/** /**

@ -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;
}
}
Loading…
Cancel
Save