From 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 19 七月 2022 21:49:55 +0800
Subject: [PATCH] 优化添加设备 功能
---
java110-bean/src/main/java/com/java110/dto/reportFeeMonthStatistics/ReportFeeMonthStatisticsDto.java | 27 +++++++++++++++++++++++++++
1 files changed, 27 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 6e2734f..ab3f3ab 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
@@ -43,9 +43,11 @@
private String roomId;
private String roomNum;
private String carNum;
+ private String psName;
private String contractCode;
private String payerObjType;
private String ownerName;
+ private String ownerId;
private String detailId;
private String builtUpArea;
@@ -132,6 +134,7 @@
private double curReceivedAmount;
private double hisOweReceivedAmount;
private double preReceivedAmount;
+ private double allHisOweReceivedAmount;
private String[] configIds;
@@ -697,4 +700,28 @@
public void setYearMonth(String yearMonth) {
this.yearMonth = yearMonth;
}
+
+ public double getAllHisOweReceivedAmount() {
+ return allHisOweReceivedAmount;
+ }
+
+ public void setAllHisOweReceivedAmount(double allHisOweReceivedAmount) {
+ this.allHisOweReceivedAmount = allHisOweReceivedAmount;
+ }
+
+ public String getOwnerId() {
+ return ownerId;
+ }
+
+ public void setOwnerId(String ownerId) {
+ this.ownerId = ownerId;
+ }
+
+ public String getPsName() {
+ return psName;
+ }
+
+ public void setPsName(String psName) {
+ this.psName = psName;
+ }
}
--
Gitblit v1.8.0