From be1b426b7d765a546f4a26b60e80aa49a57079b9 Mon Sep 17 00:00:00 2001
From: xiaogang <905166056@qq.com>
Date: 星期六, 13 一月 2024 16:25:11 +0800
Subject: [PATCH] 1、优化采购模块数量不能为小数点问题2、新增客服巡查巡楼记录功能模块3、新增页面导出功能4、优化记录查询条件新增时间段查询条件5、其他界面性调整
---
java110-bean/src/main/java/com/java110/dto/reportFee/ReportFeeMonthStatisticsDto.java | 164 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 164 insertions(+), 0 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/reportFee/ReportFeeMonthStatisticsDto.java b/java110-bean/src/main/java/com/java110/dto/reportFee/ReportFeeMonthStatisticsDto.java
index 406dd2f..3056679 100644
--- a/java110-bean/src/main/java/com/java110/dto/reportFee/ReportFeeMonthStatisticsDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/reportFee/ReportFeeMonthStatisticsDto.java
@@ -158,6 +158,26 @@
private String preOweAmount;
+ private String ruleNameOne;
+ private String ruleNameTwo;
+ private String ruleNameThree;
+ private String ruleNameFour;
+ private String ruleNameFive;
+ private String ruleNameSix;
+
+ private String discountPriceOne;
+ private String discountPriceTwo;
+ private String discountPriceThree;
+ private String discountPriceFour;
+ private String discountPriceFive;
+ private String discountPriceSix;
+
+ private String discountSmallTypeOne;
+ private String discountSmallTypeTwo;
+ private String discountSmallTypeThree;
+ private String discountSmallTypeFour;
+ private String discountSmallTypeFive;
+ private String discountSmallTypeSix;
public String getReceivableAmount() {
return receivableAmount;
@@ -814,4 +834,148 @@
public void setPreOweAmount(String preOweAmount) {
this.preOweAmount = preOweAmount;
}
+
+ public String getRuleNameOne() {
+ return ruleNameOne;
+ }
+
+ public void setRuleNameOne(String ruleNameOne) {
+ this.ruleNameOne = ruleNameOne;
+ }
+
+ public String getRuleNameTwo() {
+ return ruleNameTwo;
+ }
+
+ public void setRuleNameTwo(String ruleNameTwo) {
+ this.ruleNameTwo = ruleNameTwo;
+ }
+
+ public String getRuleNameThree() {
+ return ruleNameThree;
+ }
+
+ public void setRuleNameThree(String ruleNameThree) {
+ this.ruleNameThree = ruleNameThree;
+ }
+
+ public String getRuleNameFour() {
+ return ruleNameFour;
+ }
+
+ public void setRuleNameFour(String ruleNameFour) {
+ this.ruleNameFour = ruleNameFour;
+ }
+
+ public String getRuleNameFive() {
+ return ruleNameFive;
+ }
+
+ public void setRuleNameFive(String ruleNameFive) {
+ this.ruleNameFive = ruleNameFive;
+ }
+
+ public String getRuleNameSix() {
+ return ruleNameSix;
+ }
+
+ public void setRuleNameSix(String ruleNameSix) {
+ this.ruleNameSix = ruleNameSix;
+ }
+
+ public String getDiscountPriceOne() {
+ return discountPriceOne;
+ }
+
+ public void setDiscountPriceOne(String discountPriceOne) {
+ this.discountPriceOne = discountPriceOne;
+ }
+
+ public String getDiscountPriceTwo() {
+ return discountPriceTwo;
+ }
+
+ public void setDiscountPriceTwo(String discountPriceTwo) {
+ this.discountPriceTwo = discountPriceTwo;
+ }
+
+ public String getDiscountPriceThree() {
+ return discountPriceThree;
+ }
+
+ public void setDiscountPriceThree(String discountPriceThree) {
+ this.discountPriceThree = discountPriceThree;
+ }
+
+ public String getDiscountPriceFour() {
+ return discountPriceFour;
+ }
+
+ public void setDiscountPriceFour(String discountPriceFour) {
+ this.discountPriceFour = discountPriceFour;
+ }
+
+ public String getDiscountPriceFive() {
+ return discountPriceFive;
+ }
+
+ public void setDiscountPriceFive(String discountPriceFive) {
+ this.discountPriceFive = discountPriceFive;
+ }
+
+ public String getDiscountPriceSix() {
+ return discountPriceSix;
+ }
+
+ public void setDiscountPriceSix(String discountPriceSix) {
+ this.discountPriceSix = discountPriceSix;
+ }
+
+ public String getDiscountSmallTypeOne() {
+ return discountSmallTypeOne;
+ }
+
+ public void setDiscountSmallTypeOne(String discountSmallTypeOne) {
+ this.discountSmallTypeOne = discountSmallTypeOne;
+ }
+
+ public String getDiscountSmallTypeTwo() {
+ return discountSmallTypeTwo;
+ }
+
+ public void setDiscountSmallTypeTwo(String discountSmallTypeTwo) {
+ this.discountSmallTypeTwo = discountSmallTypeTwo;
+ }
+
+ public String getDiscountSmallTypeThree() {
+ return discountSmallTypeThree;
+ }
+
+ public void setDiscountSmallTypeThree(String discountSmallTypeThree) {
+ this.discountSmallTypeThree = discountSmallTypeThree;
+ }
+
+ public String getDiscountSmallTypeFour() {
+ return discountSmallTypeFour;
+ }
+
+ public void setDiscountSmallTypeFour(String discountSmallTypeFour) {
+ this.discountSmallTypeFour = discountSmallTypeFour;
+ }
+
+ public String getDiscountSmallTypeFive() {
+ return discountSmallTypeFive;
+ }
+
+ public void setDiscountSmallTypeFive(String discountSmallTypeFive) {
+ this.discountSmallTypeFive = discountSmallTypeFive;
+ }
+
+ public String getDiscountSmallTypeSix() {
+ return discountSmallTypeSix;
+ }
+
+ public void setDiscountSmallTypeSix(String discountSmallTypeSix) {
+ this.discountSmallTypeSix = discountSmallTypeSix;
+ }
}
--
Gitblit v1.8.0