From 99a4e9a6639d5d27699a0408df854bb7a40f47d4 Mon Sep 17 00:00:00 2001
From: 1098226878@qq.com <1098226878@qq.com>
Date: 星期三, 01 十二月 2021 17:01:39 +0800
Subject: [PATCH] 优化优惠卷

---
 java110-bean/src/main/java/com/java110/dto/reportFeeMonthStatistics/ReportFeeMonthStatisticsDto.java |   87 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 87 insertions(+), 0 deletions(-)

diff --git a/java110-bean/src/main/java/com/java110/dto/reportFeeMonthStatistics/ReportFeeMonthStatisticsDto.java b/java110-bean/src/main/java/com/java110/dto/reportFeeMonthStatistics/ReportFeeMonthStatisticsDto.java
index f2cba33..dcadcf1 100755
--- a/java110-bean/src/main/java/com/java110/dto/reportFeeMonthStatistics/ReportFeeMonthStatisticsDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/reportFeeMonthStatistics/ReportFeeMonthStatisticsDto.java
@@ -70,6 +70,8 @@
     //鏀粯鏂瑰紡
     private String primeRate;
 
+    private double configReceivedAmount = 0;
+
     //搴旀敹鎬婚噾棰�(灏忚)
     private String totalReceivableAmount;
 
@@ -124,6 +126,17 @@
     private String stateName;
 
     private String repairId;
+
+    private double hisOweAmount;
+    private double curReceivableAmount;
+    private double curReceivedAmount;
+    private double hisOweReceivedAmount;
+    private double preReceivedAmount;
+    private double allHisOweReceivedAmount;
+
+    private String[] configIds;
+
+    private String yearMonth;
 
     public String getReceivableAmount() {
         return receivableAmount;
@@ -588,6 +601,7 @@
     public void setRepairId(String repairId) {
         this.repairId = repairId;
     }
+
     public String getAllOweAmount() {
         return allOweAmount;
     }
@@ -619,4 +633,77 @@
     public void setBuiltUpArea(String builtUpArea) {
         this.builtUpArea = builtUpArea;
     }
+
+
+    public String[] getConfigIds() {
+        return configIds;
+    }
+
+    public void setConfigIds(String[] configIds) {
+        this.configIds = configIds;
+    }
+
+    public double getConfigReceivedAmount() {
+        return configReceivedAmount;
+    }
+
+    public void setConfigReceivedAmount(double configReceivedAmount) {
+        this.configReceivedAmount = configReceivedAmount;
+    }
+
+    public double getHisOweAmount() {
+        return hisOweAmount;
+    }
+
+    public void setHisOweAmount(double hisOweAmount) {
+        this.hisOweAmount = hisOweAmount;
+    }
+
+    public double getCurReceivableAmount() {
+        return curReceivableAmount;
+    }
+
+    public void setCurReceivableAmount(double curReceivableAmount) {
+        this.curReceivableAmount = curReceivableAmount;
+    }
+
+    public double getCurReceivedAmount() {
+        return curReceivedAmount;
+    }
+
+    public void setCurReceivedAmount(double curReceivedAmount) {
+        this.curReceivedAmount = curReceivedAmount;
+    }
+
+    public double getHisOweReceivedAmount() {
+        return hisOweReceivedAmount;
+    }
+
+    public void setHisOweReceivedAmount(double hisOweReceivedAmount) {
+        this.hisOweReceivedAmount = hisOweReceivedAmount;
+    }
+
+    public double getPreReceivedAmount() {
+        return preReceivedAmount;
+    }
+
+    public void setPreReceivedAmount(double preReceivedAmount) {
+        this.preReceivedAmount = preReceivedAmount;
+    }
+
+    public String getYearMonth() {
+        return yearMonth;
+    }
+
+    public void setYearMonth(String yearMonth) {
+        this.yearMonth = yearMonth;
+    }
+
+    public double getAllHisOweReceivedAmount() {
+        return allHisOweReceivedAmount;
+    }
+
+    public void setAllHisOweReceivedAmount(double allHisOweReceivedAmount) {
+        this.allHisOweReceivedAmount = allHisOweReceivedAmount;
+    }
 }

--
Gitblit v1.8.0