From 22e8a676ee42c0d78b3526bcd9a635abbe8dca03 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期二, 28 六月 2022 11:28:21 +0800
Subject: [PATCH] 优化databus bug

---
 java110-bean/src/main/java/com/java110/vo/api/fee/ApiFeeDataVo.java |  147 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 147 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 82f7d43..65db84f
--- 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,8 @@
     private String feeId;
     private String userId;
     private String payerObjId;
+    private String payerObjName;
+    private String payerObjType;
     private String configId;
 
     private String state;
@@ -34,6 +39,7 @@
     private String additionalAmount;
 
     private String feePrice;
+    private String feeTotalPrice;
     private String isDefault;
 
     private String paymentCd;
@@ -42,6 +48,30 @@
     private String computingFormula;
     private String deadlineTime;
     private String amountOwed;
+
+    private String curDegrees;
+    private String preDegrees;
+
+    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 String deductFrom;
+
+    private List<FeeAttrDto> feeAttrs;
+
     public String getAmount() {
         return amount;
     }
@@ -241,4 +271,121 @@
     public void setAmountOwed(String amountOwed) {
         this.amountOwed = amountOwed;
     }
+
+    public String getPayerObjType() {
+        return payerObjType;
+    }
+
+    public void setPayerObjType(String payerObjType) {
+        this.payerObjType = payerObjType;
+    }
+
+    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 String getPreReadingTime() {
+        return preReadingTime;
+    }
+
+    public void setPreReadingTime(String preReadingTime) {
+        this.preReadingTime = preReadingTime;
+    }
+
+    public String getCurReadingTime() {
+        return curReadingTime;
+    }
+
+    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;
+    }
+
+    public String getDeductFrom() { return deductFrom; }
+
+    public void setDeductFrom(String deductFrom) { this.deductFrom = deductFrom; }
 }

--
Gitblit v1.8.0