From 110d6060625a25f2546c4de3b3a57117d9cf769a Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期二, 24 一月 2023 11:46:32 +0800
Subject: [PATCH] 门禁白名单同步
---
java110-bean/src/main/java/com/java110/dto/reportFeeMonthStatistics/ReportFeeMonthStatisticsDto.java | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 56 insertions(+), 2 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 dcadcf1..30cc593 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
@@ -22,7 +22,9 @@
private String updateTime;
private String remark;
private String objName;
+ private String objNameNum;
private String receivedAmount;
+ private String payableAmount;
private String feeYear;
private String feeMonth;
private String feeId;
@@ -39,19 +41,21 @@
private String floorId;
private String floorNum;
private String unitId;
+ private String[] unitIds;
private String unitNum;
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;
private String objCount;
private String normalCount;
-
private Date createTime;
private String startTime;
@@ -115,6 +119,9 @@
//绌虹疆鎴垮噺鍏嶉噾棰�
private String vacantHousingReduction;
+
+ //璧犻�侀噾棰�
+ private String giftAmount;
//鏀惰垂鐜�
private String chargeRate;
@@ -634,7 +641,6 @@
this.builtUpArea = builtUpArea;
}
-
public String[] getConfigIds() {
return configIds;
}
@@ -706,4 +712,52 @@
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;
+ }
+
+ public String getObjNameNum() {
+ return objNameNum;
+ }
+
+ public void setObjNameNum(String objNameNum) {
+ this.objNameNum = objNameNum;
+ }
+
+ public String getGiftAmount() {
+ return giftAmount;
+ }
+
+ public void setGiftAmount(String giftAmount) {
+ this.giftAmount = giftAmount;
+ }
+
+ public String getPayableAmount() {
+ return payableAmount;
+ }
+
+ public void setPayableAmount(String payableAmount) {
+ this.payableAmount = payableAmount;
+ }
+
+ public String[] getUnitIds() {
+ return unitIds;
+ }
+
+ public void setUnitIds(String[] unitIds) {
+ this.unitIds = unitIds;
+ }
}
--
Gitblit v1.8.0