parent
7bf01cafea
commit
be9cfee203
@ -0,0 +1,431 @@
|
||||
package com.platform.entities;
|
||||
|
||||
public class PreDataInfo {
|
||||
|
||||
/** 是否更新 */
|
||||
private String isupdate = "-";
|
||||
|
||||
/** 是否采集 */
|
||||
private String iscollect = "否";
|
||||
|
||||
/** 市名称 */
|
||||
private String cityName;
|
||||
|
||||
/** 县区名称 */
|
||||
private String districtName;
|
||||
|
||||
/** 地区编码 */
|
||||
private String areaCode;
|
||||
|
||||
/** 地区级别 */
|
||||
private String areaLevel;
|
||||
|
||||
/** 系统名称 */
|
||||
private String sysName;
|
||||
|
||||
/** 系统版本信息 */
|
||||
private String dataVersion;
|
||||
|
||||
/** 投入使用时间 */
|
||||
private String beginUseTime;
|
||||
|
||||
/** 系统数据功能描述 */
|
||||
private String functionDetails;
|
||||
|
||||
/** 管理部门联系人 */
|
||||
private String departmentConcactor;
|
||||
|
||||
/** 联系方式 */
|
||||
private String concacts;
|
||||
|
||||
/** 信息系统开发商全称 */
|
||||
private String developerFullName;
|
||||
|
||||
/** 数据库类型 */
|
||||
private String dataBaseType;
|
||||
|
||||
/** 数据库版本 */
|
||||
private String dataBaseVersion;
|
||||
|
||||
/** 部门预算管理 */
|
||||
private String departmentBudgetManage;
|
||||
|
||||
/** 预算指标管理 */
|
||||
private String budgetQuotaManage;
|
||||
|
||||
/** 预算执行管理 */
|
||||
private String budgetExecManage;
|
||||
|
||||
/** 总预算会计 */
|
||||
private String totalBudgetAccount;
|
||||
|
||||
/** 决算管理 */
|
||||
private String finalAccountManage;
|
||||
|
||||
/** 报表管理 */
|
||||
private String reportFormManage;
|
||||
|
||||
/** 非税收入管理 */
|
||||
private String nonTaxManage;
|
||||
|
||||
/** 工作统发系统 */
|
||||
private String wageSystem;
|
||||
|
||||
/** 财政经济景气预测与分析 */
|
||||
private String analysisOfFinancialEconomicProsperity;
|
||||
|
||||
/** 政府性债务管理 */
|
||||
private String governmentDebtManage;
|
||||
|
||||
/**
|
||||
* @return the isupdate
|
||||
*/
|
||||
public String getIsupdate() {
|
||||
return isupdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param isupdate the isupdate to set
|
||||
*/
|
||||
public void setIsupdate(String isupdate) {
|
||||
this.isupdate = isupdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the iscollect
|
||||
*/
|
||||
public String getIscollect() {
|
||||
return iscollect;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param iscollect the iscollect to set
|
||||
*/
|
||||
public void setIscollect(String iscollect) {
|
||||
this.iscollect = iscollect;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the cityName
|
||||
*/
|
||||
public String getCityName() {
|
||||
return cityName;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param cityName the cityName to set
|
||||
*/
|
||||
public void setCityName(String cityName) {
|
||||
this.cityName = cityName;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the districtName
|
||||
*/
|
||||
public String getDistrictName() {
|
||||
return districtName;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param districtName the districtName to set
|
||||
*/
|
||||
public void setDistrictName(String districtName) {
|
||||
this.districtName = districtName;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the areaCode
|
||||
*/
|
||||
public String getAreaCode() {
|
||||
return areaCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param areaCode the areaCode to set
|
||||
*/
|
||||
public void setAreaCode(String areaCode) {
|
||||
this.areaCode = areaCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the areaLevel
|
||||
*/
|
||||
public String getAreaLevel() {
|
||||
return areaLevel;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param areaLevel the areaLevel to set
|
||||
*/
|
||||
public void setAreaLevel(String areaLevel) {
|
||||
this.areaLevel = areaLevel;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the sysName
|
||||
*/
|
||||
public String getSysName() {
|
||||
return sysName;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param sysName the sysName to set
|
||||
*/
|
||||
public void setSysName(String sysName) {
|
||||
this.sysName = sysName;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the dataVersion
|
||||
*/
|
||||
public String getDataVersion() {
|
||||
return dataVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param dataVersion the dataVersion to set
|
||||
*/
|
||||
public void setDataVersion(String dataVersion) {
|
||||
this.dataVersion = dataVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the beginUseTime
|
||||
*/
|
||||
public String getBeginUseTime() {
|
||||
return beginUseTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param beginUseTime the beginUseTime to set
|
||||
*/
|
||||
public void setBeginUseTime(String beginUseTime) {
|
||||
this.beginUseTime = beginUseTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the functionDetails
|
||||
*/
|
||||
public String getFunctionDetails() {
|
||||
return functionDetails;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param functionDetails the functionDetails to set
|
||||
*/
|
||||
public void setFunctionDetails(String functionDetails) {
|
||||
this.functionDetails = functionDetails;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the departmentConcactor
|
||||
*/
|
||||
public String getDepartmentConcactor() {
|
||||
return departmentConcactor;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param departmentConcactor the departmentConcactor to set
|
||||
*/
|
||||
public void setDepartmentConcactor(String departmentConcactor) {
|
||||
this.departmentConcactor = departmentConcactor;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the concacts
|
||||
*/
|
||||
public String getConcacts() {
|
||||
return concacts;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param concacts the concacts to set
|
||||
*/
|
||||
public void setConcacts(String concacts) {
|
||||
this.concacts = concacts;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the developerFullName
|
||||
*/
|
||||
public String getDeveloperFullName() {
|
||||
return developerFullName;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param developerFullName the developerFullName to set
|
||||
*/
|
||||
public void setDeveloperFullName(String developerFullName) {
|
||||
this.developerFullName = developerFullName;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the dataBaseType
|
||||
*/
|
||||
public String getDataBaseType() {
|
||||
return dataBaseType;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param dataBaseType the dataBaseType to set
|
||||
*/
|
||||
public void setDataBaseType(String dataBaseType) {
|
||||
this.dataBaseType = dataBaseType;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the dataBaseVersion
|
||||
*/
|
||||
public String getDataBaseVersion() {
|
||||
return dataBaseVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param dataBaseVersion the dataBaseVersion to set
|
||||
*/
|
||||
public void setDataBaseVersion(String dataBaseVersion) {
|
||||
this.dataBaseVersion = dataBaseVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the departmentBudgetManage
|
||||
*/
|
||||
public String getDepartmentBudgetManage() {
|
||||
return departmentBudgetManage;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param departmentBudgetManage the departmentBudgetManage to set
|
||||
*/
|
||||
public void setDepartmentBudgetManage(String departmentBudgetManage) {
|
||||
this.departmentBudgetManage = departmentBudgetManage;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the budgetQuotaManage
|
||||
*/
|
||||
public String getBudgetQuotaManage() {
|
||||
return budgetQuotaManage;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param budgetQuotaManage the budgetQuotaManage to set
|
||||
*/
|
||||
public void setBudgetQuotaManage(String budgetQuotaManage) {
|
||||
this.budgetQuotaManage = budgetQuotaManage;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the budgetExecManage
|
||||
*/
|
||||
public String getBudgetExecManage() {
|
||||
return budgetExecManage;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param budgetExecManage the budgetExecManage to set
|
||||
*/
|
||||
public void setBudgetExecManage(String budgetExecManage) {
|
||||
this.budgetExecManage = budgetExecManage;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the totalBudgetAccount
|
||||
*/
|
||||
public String getTotalBudgetAccount() {
|
||||
return totalBudgetAccount;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param totalBudgetAccount the totalBudgetAccount to set
|
||||
*/
|
||||
public void setTotalBudgetAccount(String totalBudgetAccount) {
|
||||
this.totalBudgetAccount = totalBudgetAccount;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the finalAccountManage
|
||||
*/
|
||||
public String getFinalAccountManage() {
|
||||
return finalAccountManage;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param finalAccountManage the finalAccountManage to set
|
||||
*/
|
||||
public void setFinalAccountManage(String finalAccountManage) {
|
||||
this.finalAccountManage = finalAccountManage;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the reportFormManage
|
||||
*/
|
||||
public String getReportFormManage() {
|
||||
return reportFormManage;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param reportFormManage the reportFormManage to set
|
||||
*/
|
||||
public void setReportFormManage(String reportFormManage) {
|
||||
this.reportFormManage = reportFormManage;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the nonTaxManage
|
||||
*/
|
||||
public String getNonTaxManage() {
|
||||
return nonTaxManage;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param nonTaxManage the nonTaxManage to set
|
||||
*/
|
||||
public void setNonTaxManage(String nonTaxManage) {
|
||||
this.nonTaxManage = nonTaxManage;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the wageSystem
|
||||
*/
|
||||
public String getWageSystem() {
|
||||
return wageSystem;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param wageSystem the wageSystem to set
|
||||
*/
|
||||
public void setWageSystem(String wageSystem) {
|
||||
this.wageSystem = wageSystem;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the analysisOfFinancialEconomicProsperity
|
||||
*/
|
||||
public String getAnalysisOfFinancialEconomicProsperity() {
|
||||
return analysisOfFinancialEconomicProsperity;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param analysisOfFinancialEconomicProsperity the analysisOfFinancialEconomicProsperity to set
|
||||
*/
|
||||
public void setAnalysisOfFinancialEconomicProsperity(
|
||||
String analysisOfFinancialEconomicProsperity) {
|
||||
this.analysisOfFinancialEconomicProsperity = analysisOfFinancialEconomicProsperity;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the governmentDebtManage
|
||||
*/
|
||||
public String getGovernmentDebtManage() {
|
||||
return governmentDebtManage;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param governmentDebtManage the governmentDebtManage to set
|
||||
*/
|
||||
public void setGovernmentDebtManage(String governmentDebtManage) {
|
||||
this.governmentDebtManage = governmentDebtManage;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue