java110
2022-09-30 2d9f375aa63d2eb16fb4849f23536542e27caa2f
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
@@ -32,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;
@@ -55,6 +59,9 @@
    private String payerObjType;
    private String payerObjName;
    private List<FeeAccountDetailDto> feeAccountDetailDtoList;
    private List<PayFeeDetailDiscountDto> payFeeDetailDiscountDtoList;
    public String getReason() {
        return reason;
@@ -167,7 +174,6 @@
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
    public String getCreateTime() {
        return createTime;
@@ -312,4 +318,36 @@
    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;
    }
}