|
@@ -86,6 +86,7 @@ public class WorkInvoiceExport extends ActEntity<WorkInvoiceExport> {
|
|
|
private String notifyId; //代办判定条件
|
|
|
private String widNumber; //发票号
|
|
|
private Double widTotalMoney; //发票金额
|
|
|
+ private Double widTotalMoneyD; //发票金额
|
|
|
private Area area = new Area(); // 对账地区
|
|
|
|
|
|
|
|
@@ -295,6 +296,7 @@ public class WorkInvoiceExport extends ActEntity<WorkInvoiceExport> {
|
|
|
this.projectName = projectName;
|
|
|
}
|
|
|
|
|
|
+ @ExcelField(title="开票总金额(元)", align=2, sort=7)
|
|
|
public Double getMoney() {
|
|
|
return money;
|
|
|
}
|
|
@@ -303,7 +305,6 @@ public class WorkInvoiceExport extends ActEntity<WorkInvoiceExport> {
|
|
|
this.money = money;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="开票总金额(元)", align=2, sort=7)
|
|
|
public Double getMoneyStr() {
|
|
|
return moneyStr;
|
|
|
}
|
|
@@ -607,7 +608,6 @@ public class WorkInvoiceExport extends ActEntity<WorkInvoiceExport> {
|
|
|
this.widNumber = widNumber;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="发票金额(元)", align=2, sort=10)
|
|
|
public Double getWidTotalMoney() {
|
|
|
return widTotalMoney;
|
|
|
}
|
|
@@ -640,4 +640,13 @@ public class WorkInvoiceExport extends ActEntity<WorkInvoiceExport> {
|
|
|
public void setReportNumber(String reportNumber) {
|
|
|
this.reportNumber = reportNumber;
|
|
|
}
|
|
|
+
|
|
|
+ @ExcelField(title="发票金额(元)", align=2, sort=10)
|
|
|
+ public Double getWidTotalMoneyD() {
|
|
|
+ return widTotalMoneyD;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWidTotalMoneyD(Double widTotalMoneyD) {
|
|
|
+ this.widTotalMoneyD = widTotalMoneyD;
|
|
|
+ }
|
|
|
}
|