From 3c6a4c77f311b6797b927da025a29b9d9ce7888f Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期四, 13 七月 2023 00:58:27 +0800
Subject: [PATCH] 业主保存投票开发完成
---
java110-bean/src/main/java/com/java110/dto/fee/FeeDetailDto.java | 191 +++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 190 insertions(+), 1 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 fcdadd1..1719840 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.payFee.PayFeeDetailDiscountDto;
import java.io.Serializable;
import java.util.Date;
+import java.util.List;
/**
* @ClassName FloorDto
@@ -15,16 +17,38 @@
**/
public class FeeDetailDto extends PageDto implements Serializable {
+
+ public static final String PRIME_REATE_WECHAT_QRCODE = "3";
+ public static final String PRIME_REATE_ALI_QRCODE = "4";
+ public static final String PRIME_REATE_WECHAT = "5";
+ public static final String PRIME_REATE_CRASH = "1";
+ 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";
+ public static final String STATE_OWE = "1500"; // 娆犺垂
+ /**
+ * 1000 閫�璐逛腑
+ * 1100 宸查��璐�
+ * 1200 閫�璐瑰け璐�
+ * 1300 閫�璐瑰崟
+ * 1400 姝e父
+ */
+
private String primeRate;
private String detailId;
private String receivableAmount;
private String cycles;
private String remark;
private String receivedAmount;
+ private String payableAmount;
private String communityId;
private String feeId;
private String bId;
private String payerObjId;
+ private String payerObjName;
private String payerObjType;
private Date createTime;
@@ -39,7 +63,29 @@
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 String payOrderId;
+
+ private String cashierId;
+ private String cashierName;
+
+ private List<FeeAccountDetailDto> feeAccountDetailDtoList;
+ private List<PayFeeDetailDiscountDto> payFeeDetailDiscountDtoList;
+
+ private String fadState;
+ private String fadStateName;
+ private String amount;
+
+ private String primeRateName;
+
+ private String feeFlag;
public String getPrimeRate() {
return primeRate;
@@ -104,7 +150,6 @@
public void setFeeId(String feeId) {
this.feeId = feeId;
}
-
public Date getCreateTime() {
return createTime;
@@ -217,4 +262,148 @@
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;
+ }
+
+ public List<PayFeeDetailDiscountDto> getPayFeeDetailDiscountDtoList() {
+ return payFeeDetailDiscountDtoList;
+ }
+
+ public void setPayFeeDetailDiscountDtoList(List<PayFeeDetailDiscountDto> payFeeDetailDiscountDtoList) {
+ this.payFeeDetailDiscountDtoList = payFeeDetailDiscountDtoList;
+ }
+
+ public String getPayableAmount() {
+ return payableAmount;
+ }
+
+ public void setPayableAmount(String payableAmount) {
+ this.payableAmount = payableAmount;
+ }
+
+ public String getPayOrderId() {
+ return payOrderId;
+ }
+
+ public void setPayOrderId(String payOrderId) {
+ this.payOrderId = payOrderId;
+ }
+
+ public String getPrimeRateName() {
+ return primeRateName;
+ }
+
+ public void setPrimeRateName(String primeRateName) {
+ this.primeRateName = primeRateName;
+ }
+
+ public String getPayerObjName() {
+ return payerObjName;
+ }
+
+ public void setPayerObjName(String payerObjName) {
+ this.payerObjName = payerObjName;
+ }
+
+ public String getCashierId() {
+ return cashierId;
+ }
+
+ public void setCashierId(String cashierId) {
+ this.cashierId = cashierId;
+ }
+
+ public String getCashierName() {
+ return cashierName;
+ }
+
+ public void setCashierName(String cashierName) {
+ this.cashierName = cashierName;
+ }
+
+ public String getFeeFlag() {
+ return feeFlag;
+ }
+
+ public void setFeeFlag(String feeFlag) {
+ this.feeFlag = feeFlag;
+ }
}
--
Gitblit v1.8.0