From 4ee86eb0f4984bf3ede3196ad8c5fe95e8c5a504 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期三, 15 六月 2022 19:05:02 +0800
Subject: [PATCH] 优化代码

---
 java110-bean/src/main/java/com/java110/vo/api/fee/ApiFeeDataVo.java |   93 ++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 93 insertions(+), 0 deletions(-)

diff --git a/java110-bean/src/main/java/com/java110/vo/api/fee/ApiFeeDataVo.java b/java110-bean/src/main/java/com/java110/vo/api/fee/ApiFeeDataVo.java
old mode 100644
new mode 100755
index 108edaa..356184a
--- a/java110-bean/src/main/java/com/java110/vo/api/fee/ApiFeeDataVo.java
+++ b/java110-bean/src/main/java/com/java110/vo/api/fee/ApiFeeDataVo.java
@@ -1,7 +1,10 @@
 package com.java110.vo.api.fee;
 
+import com.java110.dto.fee.FeeAttrDto;
+
 import java.io.Serializable;
 import java.util.Date;
+import java.util.List;
 
 /**
  * @ClassName ApiFeeDataVo
@@ -21,6 +24,7 @@
     private String feeId;
     private String userId;
     private String payerObjId;
+    private String payerObjName;
     private String payerObjType;
     private String configId;
 
@@ -35,6 +39,7 @@
     private String additionalAmount;
 
     private String feePrice;
+    private String feeTotalPrice;
     private String isDefault;
 
     private String paymentCd;
@@ -49,6 +54,21 @@
 
     private String preReadingTime;
     private String curReadingTime;
+    private String mwPrice;
+
+    private String carTypeCd;
+
+    private String batchId;
+
+    //鏄犲皠鍏崇郴寮�鍏冲��
+    private String val;
+
+    private String offlinePayFeeSwitch;
+
+    //瀹炴敹閲戦鏄犲皠寮�鍏冲��
+    private String receivedAmountSwitch;
+
+    private List<FeeAttrDto> feeAttrs;
 
     public String getAmount() {
         return amount;
@@ -289,4 +309,77 @@
     public void setCurReadingTime(String curReadingTime) {
         this.curReadingTime = curReadingTime;
     }
+
+    public List<FeeAttrDto> getFeeAttrs() {
+        return feeAttrs;
+    }
+
+    public void setFeeAttrs(List<FeeAttrDto> feeAttrs) {
+        this.feeAttrs = feeAttrs;
+    }
+
+    public String getMwPrice() {
+        return mwPrice;
+    }
+
+    public void setMwPrice(String mwPrice) {
+        this.mwPrice = mwPrice;
+    }
+
+    public String getCarTypeCd() {
+        return carTypeCd;
+    }
+
+    public void setCarTypeCd(String carTypeCd) {
+        this.carTypeCd = carTypeCd;
+    }
+
+
+    public String getBatchId() {
+        return batchId;
+    }
+
+    public void setBatchId(String batchId) {
+        this.batchId = batchId;
+    }
+
+    public String getFeeTotalPrice() {
+        return feeTotalPrice;
+    }
+
+    public void setFeeTotalPrice(String feeTotalPrice) {
+        this.feeTotalPrice = feeTotalPrice;
+    }
+
+    public String getVal() {
+        return val;
+    }
+
+    public void setVal(String val) {
+        this.val = val;
+    }
+
+    public String getOfflinePayFeeSwitch() {
+        return offlinePayFeeSwitch;
+    }
+
+    public void setOfflinePayFeeSwitch(String offlinePayFeeSwitch) {
+        this.offlinePayFeeSwitch = offlinePayFeeSwitch;
+    }
+
+    public String getReceivedAmountSwitch() {
+        return receivedAmountSwitch;
+    }
+
+    public void setReceivedAmountSwitch(String receivedAmountSwitch) {
+        this.receivedAmountSwitch = receivedAmountSwitch;
+    }
+
+    public String getPayerObjName() {
+        return payerObjName;
+    }
+
+    public void setPayerObjName(String payerObjName) {
+        this.payerObjName = payerObjName;
+    }
 }

--
Gitblit v1.8.0