wuxw
2022-11-22 8a91e6d98e6842a067faa3165bb8a456336d1085
java110-bean/src/main/java/com/java110/dto/returnPayFee/ReturnPayFeeDto.java
@@ -1,9 +1,12 @@
package com.java110.dto.returnPayFee;
import com.java110.dto.PageDto;
import com.java110.dto.feeAccountDetail.FeeAccountDetailDto;
import com.java110.dto.payFeeDetailDiscount.PayFeeDetailDiscountDto;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
/**
 * @ClassName FloorDto
@@ -14,6 +17,8 @@
 * add by wuxw 2019/4/24
 **/
public class ReturnPayFeeDto extends PageDto implements Serializable {
    public static final String STATE_WAIT = "1000";
    private String reason;
    private String primeRate;
@@ -30,8 +35,9 @@
    private String state;
    private String communityId;
    private String createTime;
    private String startTime;
    private String endTime;
    private String statusCd = "0";
    private String feeTypeCdName;
@@ -52,6 +58,10 @@
    private String paNum;
    private String payerObjType;
    private String payerObjName;
    private List<FeeAccountDetailDto> feeAccountDetailDtoList;
    private List<PayFeeDetailDiscountDto> payFeeDetailDiscountDtoList;
    public String getReason() {
        return reason;
@@ -164,7 +174,6 @@
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
    public String getCreateTime() {
        return createTime;
@@ -301,4 +310,44 @@
    public void setPayerObjType(String payerObjType) {
        this.payerObjType = payerObjType;
    }
    public String getPayerObjName() {
        return payerObjName;
    }
    public void setPayerObjName(String payerObjName) {
        this.payerObjName = payerObjName;
    }
    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 getStartTime() {
        return startTime;
    }
    public void setStartTime(String startTime) {
        this.startTime = startTime;
    }
    public String getEndTime() {
        return endTime;
    }
    public void setEndTime(String endTime) {
        this.endTime = endTime;
    }
}