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/dto/fee/FeeDetailDto.java | 119 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 119 insertions(+), 0 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/fee/FeeDetailDto.java b/java110-bean/src/main/java/com/java110/dto/fee/FeeDetailDto.java
index 96fe3a6..4d7d7e9 100755
--- a/java110-bean/src/main/java/com/java110/dto/fee/FeeDetailDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/fee/FeeDetailDto.java
@@ -1,9 +1,11 @@
package com.java110.dto.fee;
import com.java110.dto.PageDto;
+import com.java110.dto.feeAccountDetail.FeeAccountDetailDto;
import java.io.Serializable;
import java.util.Date;
+import java.util.List;
/**
* @ClassName FloorDto
@@ -14,6 +16,22 @@
* add by wuxw 2019/4/24
**/
public class FeeDetailDto extends PageDto implements Serializable {
+
+ public static final String PRIME_REATE_WECHAT = "5";
+ public static final String PRIME_REATE_WECHAT_APP = "6";
+ public static final String STATE_RETURNING = "1000";
+ public static final String STATE_RETURNED = "1100";
+ public static final String STATE_RETURN_ERROR = "1200";
+ public static final String STATE_RETURN_ORDER = "1300";
+ public static final String STATE_NORMAL = "1400";
+
+ /**
+ * 1000 閫�璐逛腑
+ * 1100 宸查��璐�
+ * 1200 閫�璐瑰け璐�
+ * 1300 閫�璐瑰崟
+ * 1400 姝e父
+ */
private String primeRate;
private String detailId;
@@ -38,7 +56,20 @@
private String configId;
private String feeName;
private String importFeeName;
+ private String ownerId;
+ private String curDegrees;
+ private String preDegrees;
+ private Date preReadingTime;
+ private Date curReadingTime;
+ private String ardId;
+ private String[] states;
+
+ private List<FeeAccountDetailDto> feeAccountDetailDtoList;
+
+ private String fadState;
+ private String fadStateName;
+ private String amount;
public String getPrimeRate() {
return primeRate;
@@ -208,4 +239,92 @@
public void setImportFeeName(String importFeeName) {
this.importFeeName = importFeeName;
}
+
+ public String getOwnerId() {
+ return ownerId;
+ }
+
+ public void setOwnerId(String ownerId) {
+ this.ownerId = ownerId;
+ }
+
+ 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 String getArdId() {
+ return ardId;
+ }
+
+ public void setArdId(String ardId) {
+ this.ardId = ardId;
+ }
+
+ public String[] getStates() {
+ return states;
+ }
+
+ public void setStates(String[] states) {
+ this.states = states;
+ }
+
+ public String getFadState() {
+ return fadState;
+ }
+
+ public void setFadState(String fadState) {
+ this.fadState = fadState;
+ }
+
+ public String getFadStateName() {
+ return fadStateName;
+ }
+
+ public void setFadStateName(String fadStateName) {
+ this.fadStateName = fadStateName;
+ }
+
+ public String getAmount() {
+ return amount;
+ }
+
+ public void setAmount(String amount) {
+ this.amount = amount;
+ }
+
+ public List<FeeAccountDetailDto> getFeeAccountDetailDtoList() {
+ return feeAccountDetailDtoList;
+ }
+
+ public void setFeeAccountDetailDtoList(List<FeeAccountDetailDto> feeAccountDetailDtoList) {
+ this.feeAccountDetailDtoList = feeAccountDetailDtoList;
+ }
}
--
Gitblit v1.8.0