|
@@ -1,6 +1,7 @@
|
|
|
package com.zjugis.business.bean.response;
|
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import com.alibaba.excel.annotation.format.NumberFormat;
|
|
|
import com.zjugis.business.excel.ProjectConverter;
|
|
|
import lombok.Data;
|
|
|
|
|
@@ -66,13 +67,13 @@ public class ProjectExcelResponse {
|
|
|
@ExcelProperty("合同名称")
|
|
|
private String contractName;
|
|
|
@ExcelProperty("合同额")
|
|
|
- private String contractAmount;
|
|
|
+ private BigDecimal contractAmount;
|
|
|
@ExcelProperty("已回款")
|
|
|
- private String returnAmount;
|
|
|
+ private BigDecimal returnAmount;
|
|
|
@ExcelProperty("应收款")
|
|
|
- private String receivableAmount;
|
|
|
+ private BigDecimal receivableAmount;
|
|
|
@ExcelProperty("合同余额")
|
|
|
- private String contractBalance;
|
|
|
+ private BigDecimal contractBalance;
|
|
|
|
|
|
//总成本
|
|
|
@ExcelProperty("至该阶段总成本(元)")
|