cgf
2025-08-23 9ec0a61f90ac2464eebc643bfe2d93ac9ba6e569
java110-bean/src/main/java/com/java110/dto/fee/FeeDto.java
@@ -1,8 +1,10 @@
package com.java110.dto.fee;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.java110.dto.PageDto;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
@@ -38,7 +40,9 @@
    private String feeTypeCd;
    private String secondaryFeeTypeCd;
    private String secondaryFeeTypeCdName;
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date startTime;
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date endTime;
    private String communityId;
    private String feeId;
@@ -49,7 +53,8 @@
    private String[] feeTypeCds;
    private String configId;
    private String[] configIds;
    private String isContractFee;
    private String contractFee;
    //映射关系开关值
    private String val;
@@ -113,6 +118,7 @@
    private Date deadlineTime;
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date maxEndTime;
    private Date importFeeEndTime;
@@ -125,6 +131,8 @@
    private Date curReadingTime;
    private List<FeeAttrDto> feeAttrDtos;
    private Date payEndDate;
    //当前时间
    private Date nowDate;
@@ -180,6 +188,33 @@
    private String targetEndTime;
    private double[] report;
    public double[] getReport() {
        return report;
    }
    public void setReport(double[] report) {
        this.report = report;
    }
    private int[] yearArr;
    private int[] yearArr2;
    private List repostList;
    private int reportLength;
    public int getReportLength() {
        return reportLength;
    }
    public void setReportLength(int reportLength) {
        this.reportLength = reportLength;
    }
    public String getAmount() {
        return amount;
    }
@@ -204,7 +239,7 @@
        this.feeTypeCd = feeTypeCd;
    }
public String getSecondaryFeeTypeCd() {
    public String getSecondaryFeeTypeCd() {
        return secondaryFeeTypeCd;
    }
@@ -411,6 +446,14 @@
    public void setComputingFormula(String computingFormula) {
        this.computingFormula = computingFormula;
    }
    public Date getPayEndDate() {
        return payEndDate;
    }
    public void setPayEndDate(Date payEndDate) {
        this.payEndDate = payEndDate;
    }
    public String getIsDefault() {
@@ -895,4 +938,45 @@
    public void setTargetEndTime(String targetEndTime) {
        this.targetEndTime = targetEndTime;
    }
    public String getIsContractFee() {
        return isContractFee;
    }
    public void setIsContractFee(String isContractFee) {
        this.isContractFee = isContractFee;
    }
    public String getContractFee() {
        return contractFee;
    }
    public void setContractFee(String contractFee) {
        this.contractFee = contractFee;
    }
    public int[] getYearArr() {
        return yearArr;
    }
    public void setYearArr(int[] yearArr) {
        this.yearArr = yearArr;
    }
    public int[] getYearArr2() {
        return yearArr2;
    }
    public void setYearArr2(int[] yearArr2) {
        this.yearArr2 = yearArr2;
    }
    public List getRepostList() {
        return repostList;
    }
    public void setRepostList(List repostList) {
        this.repostList = repostList;
    }
}