|
@@ -3,6 +3,7 @@ package com.ruoyi.reportManagement.excel;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.ruoyi.common.annotation.Excel;
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -55,19 +56,19 @@ public class Payable {
|
|
* 应收金额
|
|
* 应收金额
|
|
*/
|
|
*/
|
|
@Excel(name = "应付金额")
|
|
@Excel(name = "应付金额")
|
|
- private Double fAmount;
|
|
|
|
|
|
+ private BigDecimal fAmount;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 实收金额
|
|
* 实收金额
|
|
*/
|
|
*/
|
|
@Excel(name = "实付金额")
|
|
@Excel(name = "实付金额")
|
|
- private Double fStlamount;
|
|
|
|
|
|
+ private BigDecimal fStlamount;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 未收金额
|
|
* 未收金额
|
|
*/
|
|
*/
|
|
@Excel(name = "未付金额")
|
|
@Excel(name = "未付金额")
|
|
- private Double nnfinished;
|
|
|
|
|
|
+ private BigDecimal nnfinished;
|
|
|
|
|
|
public String getfName() {
|
|
public String getfName() {
|
|
return fName;
|
|
return fName;
|
|
@@ -117,27 +118,27 @@ public class Payable {
|
|
this.fReviewDate = fReviewDate;
|
|
this.fReviewDate = fReviewDate;
|
|
}
|
|
}
|
|
|
|
|
|
- public Double getfAmount() {
|
|
|
|
|
|
+ public BigDecimal getfAmount() {
|
|
return fAmount;
|
|
return fAmount;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setfAmount(Double fAmount) {
|
|
|
|
|
|
+ public void setfAmount(BigDecimal fAmount) {
|
|
this.fAmount = fAmount;
|
|
this.fAmount = fAmount;
|
|
}
|
|
}
|
|
|
|
|
|
- public Double getfStlamount() {
|
|
|
|
|
|
+ public BigDecimal getfStlamount() {
|
|
return fStlamount;
|
|
return fStlamount;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setfStlamount(Double fStlamount) {
|
|
|
|
|
|
+ public void setfStlamount(BigDecimal fStlamount) {
|
|
this.fStlamount = fStlamount;
|
|
this.fStlamount = fStlamount;
|
|
}
|
|
}
|
|
|
|
|
|
- public Double getNnfinished() {
|
|
|
|
|
|
+ public BigDecimal getNnfinished() {
|
|
return nnfinished;
|
|
return nnfinished;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setNnfinished(Double nnfinished) {
|
|
|
|
|
|
+ public void setNnfinished(BigDecimal nnfinished) {
|
|
this.nnfinished = nnfinished;
|
|
this.nnfinished = nnfinished;
|
|
}
|
|
}
|
|
}
|
|
}
|