From 4b1f2e53335339a6e6ba85a5091045e29b68b1e0 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 02 十二月 2021 18:24:45 +0800
Subject: [PATCH] 优化代码
---
java110-bean/src/main/java/com/java110/dto/reportFeeMonthStatistics/ReportFeeMonthStatisticsDto.java | 114 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 114 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 36f72b3..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
@@ -46,6 +46,8 @@
private String contractCode;
private String payerObjType;
private String ownerName;
+ private String detailId;
+ private String builtUpArea;
private String objCount;
private String normalCount;
@@ -67,6 +69,8 @@
//鏀粯鏂瑰紡
private String primeRate;
+
+ private double configReceivedAmount = 0;
//搴旀敹鎬婚噾棰�(灏忚)
private String totalReceivableAmount;
@@ -120,6 +124,19 @@
//鐘舵�佸悕绉�
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;
@@ -577,6 +594,14 @@
this.stateName = stateName;
}
+ public String getRepairId() {
+ return repairId;
+ }
+
+ public void setRepairId(String repairId) {
+ this.repairId = repairId;
+ }
+
public String getAllOweAmount() {
return allOweAmount;
}
@@ -592,4 +617,93 @@
public void setCurOweAmount(String curOweAmount) {
this.curOweAmount = curOweAmount;
}
+
+ public String getDetailId() {
+ return detailId;
+ }
+
+ public void setDetailId(String detailId) {
+ this.detailId = detailId;
+ }
+
+ public String getBuiltUpArea() {
+ return builtUpArea;
+ }
+
+ 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