From 3e0fbd3a04babb4ef123ee7b25e52deec48ad7ec Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期日, 20 十二月 2020 18:36:31 +0800
Subject: [PATCH] 优化代码

---
 java110-bean/src/main/java/com/java110/dto/fee/FeeDto.java |   79 +++++++++++++++++++++++++++++++++++++++
 1 files changed, 79 insertions(+), 0 deletions(-)

diff --git a/java110-bean/src/main/java/com/java110/dto/fee/FeeDto.java b/java110-bean/src/main/java/com/java110/dto/fee/FeeDto.java
index 9f922ce..f2385fb 100644
--- a/java110-bean/src/main/java/com/java110/dto/fee/FeeDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/fee/FeeDto.java
@@ -4,6 +4,7 @@
 
 import java.io.Serializable;
 import java.util.Date;
+import java.util.List;
 
 /**
  * @ClassName FloorDto
@@ -21,11 +22,14 @@
     public static final String PAYER_OBJ_TYPE_ROOM = "3333"; //鎴垮眿 6666 鏄溅浣�
     public static final String PAYER_OBJ_TYPE_PARKING_SPACE = "6666";//鏄溅浣�
     public static final String PAYER_OBJ_TYPE_CAR = "6666";//鏄溅浣�
+    public static final String PAYER_OBJ_TYPE_RENTING = "9999";//鎴挎簮ID
 
     public static final String FEE_FLAG_ONCE = "2006012";
+    public static final String REDIS_PAY_OWE_FEE = "PAY_OWE_FEE_";
 
     private String amount;
     private String incomeObjId;
+    private String incomeObjName;
     private String feeTypeCd;
     private Date startTime;
     private Date endTime;
@@ -37,6 +41,9 @@
     private String[] payerObjIds;
     private String[] feeTypeCds;
     private String configId;
+
+    //鏄犲皠鍏崇郴寮�鍏冲��
+    private String val;
 
     private String squarePrice;
     private String additionalAmount;
@@ -57,6 +64,7 @@
     private double oweFee; // 娆犺垂閲戦
     private String billType;
     private String billTypeName;
+    private String builtUpArea;
 
     private String paymentCd;
 
@@ -93,6 +101,13 @@
     private Date importFeeEndTime;
 
 
+    private String curDegrees;
+    private String preDegrees;
+
+    private Date preReadingTime;
+    private Date curReadingTime;
+
+    private List<FeeAttrDto> feeAttrDtos;
 
 
     public String getAmount() {
@@ -448,4 +463,68 @@
     public void setImportFeeEndTime(Date importFeeEndTime) {
         this.importFeeEndTime = importFeeEndTime;
     }
+
+    public String getCurDegrees() {
+        return curDegrees;
+    }
+
+    public void setCurDegrees(String curDegrees) {
+        this.curDegrees = curDegrees;
+    }
+
+    public String getPreDegrees() {
+        return preDegrees;
+    }
+
+    public void setPreDegrees(String preDegrees) {
+        this.preDegrees = preDegrees;
+    }
+
+    public Date getPreReadingTime() {
+        return preReadingTime;
+    }
+
+    public void setPreReadingTime(Date preReadingTime) {
+        this.preReadingTime = preReadingTime;
+    }
+
+    public Date getCurReadingTime() {
+        return curReadingTime;
+    }
+
+    public void setCurReadingTime(Date curReadingTime) {
+        this.curReadingTime = curReadingTime;
+    }
+
+    public List<FeeAttrDto> getFeeAttrDtos() {
+        return feeAttrDtos;
+    }
+
+    public void setFeeAttrDtos(List<FeeAttrDto> feeAttrDtos) {
+        this.feeAttrDtos = feeAttrDtos;
+    }
+
+    public String getIncomeObjName() {
+        return incomeObjName;
+    }
+
+    public void setIncomeObjName(String incomeObjName) {
+        this.incomeObjName = incomeObjName;
+    }
+
+    public String getBuiltUpArea() {
+        return builtUpArea;
+    }
+
+    public void setBuiltUpArea(String builtUpArea) {
+        this.builtUpArea = builtUpArea;
+    }
+
+    public String getVal() {
+        return val;
+    }
+
+    public void setVal(String value) {
+        this.val = value;
+    }
 }

--
Gitblit v1.8.0