From 8b0dd174285faed9afdd7341a177df4e60d98192 Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期五, 25 八月 2023 01:56:25 +0800
Subject: [PATCH] 优化代码

---
 java110-bean/src/main/java/com/java110/dto/report/ReportFeeDto.java |   91 ++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 89 insertions(+), 2 deletions(-)

diff --git a/java110-bean/src/main/java/com/java110/dto/report/ReportFeeDto.java b/java110-bean/src/main/java/com/java110/dto/report/ReportFeeDto.java
index 93007a8..8c329a8 100755
--- a/java110-bean/src/main/java/com/java110/dto/report/ReportFeeDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/report/ReportFeeDto.java
@@ -42,6 +42,7 @@
     private double feePrice;
     private String payerObjType;
     private String computingFormula;
+    private String computingFormulaText;
     private String isDefault;
     private double oweFee; // 娆犺垂閲戦
     private String billType;
@@ -61,7 +62,6 @@
 
     private String ownerTel;
 
-
     private Date createTime;
 
     /**
@@ -77,7 +77,6 @@
 
     private Date importFeeEndTime;
 
-
     private String curDegrees;
     private String preDegrees;
 
@@ -92,8 +91,17 @@
     private String storeName;
     private String storeTypeCd;
 
+    private String roomSubType;
+    private String roomRent;
+    private String roomArea;
 
+    private String payOnline;
+    private String scale;
+    private String decimalPlace;
+    private String units;
 
+    private Date newStartTime;
+    private Date newEndTime;
 
     public String getAmount() {
         return amount;
@@ -510,4 +518,83 @@
     public void setMwPrice(String mwPrice) {
         this.mwPrice = mwPrice;
     }
+
+    public String getRoomSubType() {
+        return roomSubType;
+    }
+
+    public void setRoomSubType(String roomSubType) {
+        this.roomSubType = roomSubType;
+    }
+
+    public String getRoomRent() {
+        return roomRent;
+    }
+
+    public void setRoomRent(String roomRent) {
+        this.roomRent = roomRent;
+    }
+
+    public String getRoomArea() {
+        return roomArea;
+    }
+
+    public void setRoomArea(String roomArea) {
+        this.roomArea = roomArea;
+    }
+
+    public String getPayOnline() {
+        return payOnline;
+    }
+
+    public void setPayOnline(String payOnline) {
+        this.payOnline = payOnline;
+    }
+
+    public String getScale() {
+        return scale;
+    }
+
+    public void setScale(String scale) {
+        this.scale = scale;
+    }
+
+    public String getDecimalPlace() {
+        return decimalPlace;
+    }
+
+    public void setDecimalPlace(String decimalPlace) {
+        this.decimalPlace = decimalPlace;
+    }
+
+    public String getUnits() {
+        return units;
+    }
+
+    public void setUnits(String units) {
+        this.units = units;
+    }
+
+    public String getComputingFormulaText() {
+        return computingFormulaText;
+    }
+
+    public void setComputingFormulaText(String computingFormulaText) {
+        this.computingFormulaText = computingFormulaText;
+    }
+    public Date getNewStartTime() {
+        return newStartTime;
+    }
+
+    public void setNewStartTime(Date newStartTime) {
+        this.newStartTime = newStartTime;
+    }
+
+    public Date getNewEndTime() {
+        return newEndTime;
+    }
+
+    public void setNewEndTime(Date newEndTime) {
+        this.newEndTime = newEndTime;
+    }
 }

--
Gitblit v1.8.0