From 4fae2f93f26d49d920493dd13039242c3a2b9d1b Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期二, 29 十二月 2020 12:13:48 +0800
Subject: [PATCH] 优化开门问题
---
java110-bean/src/main/java/com/java110/dto/reportFeeMonthStatistics/ReportFeeMonthStatisticsDto.java | 138 ++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 138 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 b8894d9..97d18f0 100644
--- a/java110-bean/src/main/java/com/java110/dto/reportFeeMonthStatistics/ReportFeeMonthStatisticsDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/reportFeeMonthStatistics/ReportFeeMonthStatisticsDto.java
@@ -1,9 +1,11 @@
package com.java110.dto.reportFeeMonthStatistics;
import com.java110.dto.PageDto;
+import com.java110.dto.fee.FeeConfigDto;
import java.io.Serializable;
import java.util.Date;
+import java.util.List;
/**
* @ClassName FloorDto
@@ -37,13 +39,37 @@
private String unitNum;
private String roomId;
private String roomNum;
+ private String carNum;
+ private String payerObjType;
+ private String objCount;
+ private String normalCount;
private Date createTime;
+ private String startTime;
+ private String endTime;
private String statusCd = "0";
+ private int oweDay;
+ private String deadlineTime;
+
+ private String importFeeName;
+
+ //搴旀敹鎬婚噾棰�(灏忚)
+ private String totalReceivableAmount;
+
+ //瀹炴敹鎬婚噾棰�(灏忚)
+ private String totalReceivedAmount;
+
+ //搴旀敹鎬婚噾棰�(澶ц)
+ private String allReceivableAmount;
+
+ //瀹炴敹鎬婚噾棰�(澶ц)
+ private String allReceivedAmount;
+
+ private List<FeeConfigDto> FeeConfigDtos;
public String getReceivableAmount() {
return receivableAmount;
@@ -237,4 +263,116 @@
public void setRoomNum(String roomNum) {
this.roomNum = roomNum;
}
+
+ public String getStartTime() {
+ return startTime;
+ }
+
+ public void setStartTime(String startTime) {
+ this.startTime = startTime;
+ }
+
+ public String getEndTime() {
+ return endTime;
+ }
+
+ public void setEndTime(String endTime) {
+ this.endTime = endTime;
+ }
+
+ public int getOweDay() {
+ return oweDay;
+ }
+
+ public void setOweDay(int oweDay) {
+ this.oweDay = oweDay;
+ }
+
+ public String getObjCount() {
+ return objCount;
+ }
+
+ public void setObjCount(String objCount) {
+ this.objCount = objCount;
+ }
+
+ public String getCarNum() {
+ return carNum;
+ }
+
+ public void setCarNum(String carNum) {
+ this.carNum = carNum;
+ }
+
+ public String getPayerObjType() {
+ return payerObjType;
+ }
+
+ public void setPayerObjType(String payerObjType) {
+ this.payerObjType = payerObjType;
+ }
+
+ public String getDeadlineTime() {
+ return deadlineTime;
+ }
+
+ public void setDeadlineTime(String deadlineTime) {
+ this.deadlineTime = deadlineTime;
+ }
+
+ public String getImportFeeName() {
+ return importFeeName;
+ }
+
+ public void setImportFeeName(String importFeeName) {
+ this.importFeeName = importFeeName;
+ }
+
+ public String getNormalCount() {
+ return normalCount;
+ }
+
+ public void setNormalCount(String normalCount) {
+ this.normalCount = normalCount;
+ }
+
+ public String getTotalReceivableAmount() {
+ return totalReceivableAmount;
+ }
+
+ public void setTotalReceivableAmount(String totalReceivableAmount) {
+ this.totalReceivableAmount = totalReceivableAmount;
+ }
+
+ public String getTotalReceivedAmount() {
+ return totalReceivedAmount;
+ }
+
+ public void setTotalReceivedAmount(String totalReceivedAmount) {
+ this.totalReceivedAmount = totalReceivedAmount;
+ }
+
+ public String getAllReceivableAmount() {
+ return allReceivableAmount;
+ }
+
+ public void setAllReceivableAmount(String allReceivableAmount) {
+ this.allReceivableAmount = allReceivableAmount;
+ }
+
+ public String getAllReceivedAmount() {
+ return allReceivedAmount;
+ }
+
+ public void setAllReceivedAmount(String allReceivedAmount) {
+ this.allReceivedAmount = allReceivedAmount;
+ }
+
+ public List<FeeConfigDto> getFeeConfigDtos() {
+ return FeeConfigDtos;
+ }
+
+ public void setFeeConfigDtos(List<FeeConfigDto> feeConfigDtoS) {
+ FeeConfigDtos = feeConfigDtoS;
+ }
}
--
Gitblit v1.8.0