|
@@ -24,6 +24,26 @@ public class Expense extends ActEntity<Expense> {
|
|
|
//发文中监理费金额(不含税)
|
|
|
private Double documentSupervisionCost;
|
|
|
|
|
|
+
|
|
|
+ private Double designFeePayable;//设计费应付金额
|
|
|
+ private Double constructionFeePayable;//施工费应付金额
|
|
|
+
|
|
|
+ public Double getDesignFeePayable() {
|
|
|
+ return designFeePayable;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDesignFeePayable(Double designFeePayable) {
|
|
|
+ this.designFeePayable = designFeePayable;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getConstructionFeePayable() {
|
|
|
+ return constructionFeePayable;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConstructionFeePayable(Double constructionFeePayable) {
|
|
|
+ this.constructionFeePayable = constructionFeePayable;
|
|
|
+ }
|
|
|
+
|
|
|
public String getProjectName() {
|
|
|
return projectName;
|
|
|
}
|