|  | @@ -18,25 +18,174 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  	private static final long serialVersionUID = 1L;
 | 
	
		
			
				|  |  |  	private String projectId;		// 项目id
 | 
	
		
			
				|  |  |  	private String contentId;		// 工作内容ID
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	private String costName;		// 工程费用名称
 | 
	
		
			
				|  |  | +    @NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  | +	private Double caliberBudgetEstimateCost;		// 同口径批复概算静态投资(万元)
 | 
	
		
			
				|  |  | +    @NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  | +	private Double examineBeforeCost;		// 建安工程施工图预算静态投资(万元)-审批前
 | 
	
		
			
				|  |  | +    @NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  | +	private Double examineAfterArchitectureCost;		// 建安工程施工图预算静态投资(万元)-审批后-建筑工程费
 | 
	
		
			
				|  |  | +    @NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  | +	private Double examineAfterInstallCost;		// 建安工程施工图预算静态投资(万元)-审批后-安装工程费
 | 
	
		
			
				|  |  | +    @NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  | +	private Double examineAfterRestsCost;		// 建安工程施工图预算静态投资(万元)-审批后-其他费用
 | 
	
		
			
				|  |  | +    @NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  | +	private Double examineCount;		// 建安工程施工图预算静态投资(万元)-审批后-合计
 | 
	
		
			
				|  |  | +	@NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  | +	private Integer examineAdjustUnit;		// 建安工程施工图预算静态投资(万元)-调整额
 | 
	
		
			
				|  |  | +	private String amount;		// 与初步设计相比有无重大变化-数量
 | 
	
		
			
				|  |  | +	@NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  | +	private String money;		// 与初步设计相比有无重大变化-金额
 | 
	
		
			
				|  |  | +	private String cause;		// 与初步设计相比有无重大变化-原因
 | 
	
		
			
				|  |  | +	
 | 
	
		
			
				|  |  | +	public WorkContentInvestmentCost() {
 | 
	
		
			
				|  |  | +		super();
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public WorkContentInvestmentCost(String id){
 | 
	
		
			
				|  |  | +		super(id);
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public String getProjectId() {
 | 
	
		
			
				|  |  | +		return projectId;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setProjectId(String projectId) {
 | 
	
		
			
				|  |  | +		this.projectId = projectId;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +	
 | 
	
		
			
				|  |  | +	public String getContentId() {
 | 
	
		
			
				|  |  | +		return contentId;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setContentId(String contentId) {
 | 
	
		
			
				|  |  | +		this.contentId = contentId;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +	
 | 
	
		
			
				|  |  | +	@ExcelField(title="工程费用名称", align=2, sort=10)
 | 
	
		
			
				|  |  | +	public String getCostName() {
 | 
	
		
			
				|  |  | +		return costName;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setCostName(String costName) {
 | 
	
		
			
				|  |  | +		this.costName = costName;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	@ExcelField(title="同口径批复概算静态投资(万元)", align=2, sort=11)
 | 
	
		
			
				|  |  | +	public Double getCaliberBudgetEstimateCost() {
 | 
	
		
			
				|  |  | +		return caliberBudgetEstimateCost;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setCaliberBudgetEstimateCost(Double caliberBudgetEstimateCost) {
 | 
	
		
			
				|  |  | +		this.caliberBudgetEstimateCost = caliberBudgetEstimateCost;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	@ExcelField(title="审批前", align=2, sort=12)
 | 
	
		
			
				|  |  | +	public Double getExamineBeforeCost() {
 | 
	
		
			
				|  |  | +		return examineBeforeCost;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setExamineBeforeCost(Double examineBeforeCost) {
 | 
	
		
			
				|  |  | +		this.examineBeforeCost = examineBeforeCost;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	@ExcelField(title="审批后-建筑工程费", align=2, sort=13)
 | 
	
		
			
				|  |  | +	public Double getExamineAfterArchitectureCost() {
 | 
	
		
			
				|  |  | +		return examineAfterArchitectureCost;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setExamineAfterArchitectureCost(Double examineAfterArchitectureCost) {
 | 
	
		
			
				|  |  | +		this.examineAfterArchitectureCost = examineAfterArchitectureCost;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	@ExcelField(title="审批后-安装工程费", align=2, sort=14)
 | 
	
		
			
				|  |  | +	public Double getExamineAfterInstallCost() {
 | 
	
		
			
				|  |  | +		return examineAfterInstallCost;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setExamineAfterInstallCost(Double examineAfterInstallCost) {
 | 
	
		
			
				|  |  | +		this.examineAfterInstallCost = examineAfterInstallCost;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	@ExcelField(title="审批后-其他费用", align=2, sort=15)
 | 
	
		
			
				|  |  | +	public Double getExamineAfterRestsCost() {
 | 
	
		
			
				|  |  | +		return examineAfterRestsCost;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setExamineAfterRestsCost(Double examineAfterRestsCost) {
 | 
	
		
			
				|  |  | +		this.examineAfterRestsCost = examineAfterRestsCost;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	@ExcelField(title="审批后-合计", align=2, sort=16)
 | 
	
		
			
				|  |  | +	public Double getExamineCount() {
 | 
	
		
			
				|  |  | +		return examineCount;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setExamineCount(Double examineCount) {
 | 
	
		
			
				|  |  | +		this.examineCount = examineCount;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	@ExcelField(title="调整额", align=2, sort=17)
 | 
	
		
			
				|  |  | +	public Integer getExamineAdjustUnit() {
 | 
	
		
			
				|  |  | +		return examineAdjustUnit;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setExamineAdjustUnit(Integer examineAdjustUnit) {
 | 
	
		
			
				|  |  | +		this.examineAdjustUnit = examineAdjustUnit;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	@ExcelField(title="数量", align=2, sort=18)
 | 
	
		
			
				|  |  | +	public String getAmount() {
 | 
	
		
			
				|  |  | +		return amount;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setAmount(String amount) {
 | 
	
		
			
				|  |  | +		this.amount = amount;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	@ExcelField(title="金额", align=2, sort=19)
 | 
	
		
			
				|  |  | +	public String getMoney() {
 | 
	
		
			
				|  |  | +		return money;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setMoney(String money) {
 | 
	
		
			
				|  |  | +		this.money = money;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	@ExcelField(title="原因", align=2, sort=20)
 | 
	
		
			
				|  |  | +	public String getCause() {
 | 
	
		
			
				|  |  | +		return cause;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setCause(String cause) {
 | 
	
		
			
				|  |  | +		this.cause = cause;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	/*private static final long serialVersionUID = 1L;
 | 
	
		
			
				|  |  | +	private String projectId;		// 项目id
 | 
	
		
			
				|  |  | +	private String contentId;		// 工作内容ID
 | 
	
		
			
				|  |  |  	private String costType;		// 类型:估算-1、概算-2、预算-3
 | 
	
		
			
				|  |  |  	private String costNum;		// 编号
 | 
	
		
			
				|  |  |  	private String costName;		// 工程费用名称
 | 
	
		
			
				|  |  | -    @NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  | +	@NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  |  	private Double buildindCost;		// 建筑工程费
 | 
	
		
			
				|  |  | -    @NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  | +	@NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  |  	private Double equipmentCost;		// 设备购置费
 | 
	
		
			
				|  |  | -    @NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  | +	@NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  |  	private Double installationCost;		// 安装工程费
 | 
	
		
			
				|  |  | -    @NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  | +	@NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  |  	private Double otherExpenses;		// 其他费用
 | 
	
		
			
				|  |  | -    @NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  | +	@NumberFormat(style = NumberFormat.Style.CURRENCY)
 | 
	
		
			
				|  |  |  	private Double totalCost;		// 合计(万元)
 | 
	
		
			
				|  |  |  	private Integer count;		// 数量
 | 
	
		
			
				|  |  |  	private String unit;		// 单位
 | 
	
		
			
				|  |  |  	private String target;		// 指标
 | 
	
		
			
				|  |  |  	private String expenseType;		// 费用类型
 | 
	
		
			
				|  |  |  	private String nodeTypes;		// 节点类型
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	public WorkContentInvestmentCost() {
 | 
	
		
			
				|  |  |  		super();
 | 
	
		
			
				|  |  |  	}
 | 
	
	
		
			
				|  | @@ -52,7 +201,7 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  	public void setProjectId(String projectId) {
 | 
	
		
			
				|  |  |  		this.projectId = projectId;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	public String getContentId() {
 | 
	
		
			
				|  |  |  		return contentId;
 | 
	
		
			
				|  |  |  	}
 | 
	
	
		
			
				|  | @@ -60,7 +209,7 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  	public void setContentId(String contentId) {
 | 
	
		
			
				|  |  |  		this.contentId = contentId;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	public String getCostType() {
 | 
	
		
			
				|  |  |  		return costType;
 | 
	
		
			
				|  |  |  	}
 | 
	
	
		
			
				|  | @@ -68,7 +217,7 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  	public void setCostType(String costType) {
 | 
	
		
			
				|  |  |  		this.costType = costType;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	@ExcelField(title="编号", align=2, sort=10)
 | 
	
		
			
				|  |  |  	public String getCostNum() {
 | 
	
		
			
				|  |  |  		return costNum;
 | 
	
	
		
			
				|  | @@ -77,7 +226,7 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  	public void setCostNum(String costNum) {
 | 
	
		
			
				|  |  |  		this.costNum = costNum;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	@ExcelField(title="工程费用名称", align=2, sort=11)
 | 
	
		
			
				|  |  |  	public String getCostName() {
 | 
	
		
			
				|  |  |  		return costName;
 | 
	
	
		
			
				|  | @@ -86,7 +235,7 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  	public void setCostName(String costName) {
 | 
	
		
			
				|  |  |  		this.costName = costName;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	@ExcelField(title="建筑工程费", align=2, sort=12)
 | 
	
		
			
				|  |  |  	public Double getBuildindCost() {
 | 
	
		
			
				|  |  |  		return buildindCost;
 | 
	
	
		
			
				|  | @@ -95,7 +244,7 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  	public void setBuildindCost(Double buildindCost) {
 | 
	
		
			
				|  |  |  		this.buildindCost = buildindCost;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	@ExcelField(title="设备购置费", align=2, sort=13)
 | 
	
		
			
				|  |  |  	public Double getEquipmentCost() {
 | 
	
		
			
				|  |  |  		return equipmentCost;
 | 
	
	
		
			
				|  | @@ -104,7 +253,7 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  	public void setEquipmentCost(Double equipmentCost) {
 | 
	
		
			
				|  |  |  		this.equipmentCost = equipmentCost;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	@ExcelField(title="安装工程费", align=2, sort=14)
 | 
	
		
			
				|  |  |  	public Double getInstallationCost() {
 | 
	
		
			
				|  |  |  		return installationCost;
 | 
	
	
		
			
				|  | @@ -113,7 +262,7 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  	public void setInstallationCost(Double installationCost) {
 | 
	
		
			
				|  |  |  		this.installationCost = installationCost;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	@ExcelField(title="其他费用", align=2, sort=15)
 | 
	
		
			
				|  |  |  	public Double getOtherExpenses() {
 | 
	
		
			
				|  |  |  		return otherExpenses;
 | 
	
	
		
			
				|  | @@ -122,7 +271,7 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  	public void setOtherExpenses(Double otherExpenses) {
 | 
	
		
			
				|  |  |  		this.otherExpenses = otherExpenses;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	@ExcelField(title="合计(万元)", align=2, sort=16)
 | 
	
		
			
				|  |  |  	public Double getTotalCost() {
 | 
	
		
			
				|  |  |  		return totalCost;
 | 
	
	
		
			
				|  | @@ -131,7 +280,7 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  	public void setTotalCost(Double totalCost) {
 | 
	
		
			
				|  |  |  		this.totalCost = totalCost;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	@ExcelField(title="数量", align=2, sort=17)
 | 
	
		
			
				|  |  |  	public Integer getCount() {
 | 
	
		
			
				|  |  |  		return count;
 | 
	
	
		
			
				|  | @@ -140,7 +289,7 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  	public void setCount(Integer count) {
 | 
	
		
			
				|  |  |  		this.count = count;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	@ExcelField(title="单位", align=2, sort=18)
 | 
	
		
			
				|  |  |  	public String getUnit() {
 | 
	
		
			
				|  |  |  		return unit;
 | 
	
	
		
			
				|  | @@ -149,7 +298,7 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  	public void setUnit(String unit) {
 | 
	
		
			
				|  |  |  		this.unit = unit;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	@ExcelField(title="指标", align=2, sort=19)
 | 
	
		
			
				|  |  |  	public String getTarget() {
 | 
	
		
			
				|  |  |  		return target;
 | 
	
	
		
			
				|  | @@ -158,7 +307,7 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  	public void setTarget(String target) {
 | 
	
		
			
				|  |  |  		this.target = target;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	@ExcelField(title="费用类型", align=2, sort=20)
 | 
	
		
			
				|  |  |  	public String getExpenseType() {
 | 
	
		
			
				|  |  |  		return expenseType;
 | 
	
	
		
			
				|  | @@ -167,7 +316,7 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  	public void setExpenseType(String expenseType) {
 | 
	
		
			
				|  |  |  		this.expenseType = expenseType;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	@ExcelField(title="节点类型", align=2, sort=21)
 | 
	
		
			
				|  |  |  	public String getNodeTypes() {
 | 
	
		
			
				|  |  |  		return nodeTypes;
 | 
	
	
		
			
				|  | @@ -175,6 +324,6 @@ public class WorkContentInvestmentCost extends DataEntity<WorkContentInvestmentC
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  	public void setNodeTypes(String nodeTypes) {
 | 
	
		
			
				|  |  |  		this.nodeTypes = nodeTypes;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | +	}*/
 | 
	
		
			
				|  |  |  	
 | 
	
		
			
				|  |  |  }
 |