java110
2021-09-04 576c52d8d8e6fb1e738380cc5fc101a6a2b0b3a8
java110-bean/src/main/java/com/java110/dto/fee/FeeDto.java
old mode 100644 new mode 100755
@@ -4,6 +4,7 @@
import java.io.Serializable;
import java.util.Date;
import java.util.List;
/**
 * @ClassName FloorDto
@@ -20,12 +21,17 @@
    public static final String PAYER_OBJ_TYPE_ROOM = "3333"; //房屋 6666 是车位
    public static final String PAYER_OBJ_TYPE_PARKING_SPACE = "6666";//是车位
    public static final String PAYER_OBJ_TYPE_CONTRACT = "7777";//是合同
    public static final String PAYER_OBJ_TYPE_CAR = "6666";//是车位
    public static final String PAYER_OBJ_TYPE_RENTING = "9999";//房源ID
    public static final String FEE_FLAG_ONCE = "2006012";
    public static final String FEE_FLAG_ONCE = "2006012";//一次性费用
    public static final String FEE_FLAG_CYCLE = "1003006";//周期性费用
    public static final String REDIS_PAY_OWE_FEE = "PAY_OWE_FEE_";
    private String amount;
    private String incomeObjId;
    private String incomeObjName;
    private String feeTypeCd;
    private Date startTime;
    private Date endTime;
@@ -38,7 +44,14 @@
    private String[] feeTypeCds;
    private String configId;
    //映射关系开关值
    private String val;
    //实收金额映射开关值
    private String receivedAmountSwitch;
    private String squarePrice;
    private String mwPrice;
    private String additionalAmount;
    private String state;
    private String stateName;
@@ -53,10 +66,12 @@
    private double feePrice;
    private String payerObjType;
    private String computingFormula;
    private String computingFormulaText;
    private String isDefault;
    private double oweFee; // 欠费金额
    private String billType;
    private String billTypeName;
    private String builtUpArea;
    private String paymentCd;
@@ -72,6 +87,8 @@
    private String ownerName;
    private String ownerTel;
    private String ownerId;
    private Date createTime;
@@ -93,7 +110,23 @@
    private Date importFeeEndTime;
    private String curDegrees;
    private String preDegrees;
    private Date preReadingTime;
    private Date curReadingTime;
    private List<FeeAttrDto> feeAttrDtos;
    //当前时间
    private Date nowDate;
    //查询出的数量
    private int count;
    private String carTypeCd;
    private String cycle;
    private double feeTotalPrice;
    public String getAmount() {
        return amount;
@@ -183,7 +216,6 @@
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
    public Date getArrearsEndTime() {
        return arrearsEndTime;
@@ -448,4 +480,140 @@
    public void setImportFeeEndTime(Date importFeeEndTime) {
        this.importFeeEndTime = importFeeEndTime;
    }
    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 List<FeeAttrDto> getFeeAttrDtos() {
        return feeAttrDtos;
    }
    public void setFeeAttrDtos(List<FeeAttrDto> feeAttrDtos) {
        this.feeAttrDtos = feeAttrDtos;
    }
    public String getIncomeObjName() {
        return incomeObjName;
    }
    public void setIncomeObjName(String incomeObjName) {
        this.incomeObjName = incomeObjName;
    }
    public String getBuiltUpArea() {
        return builtUpArea;
    }
    public void setBuiltUpArea(String builtUpArea) {
        this.builtUpArea = builtUpArea;
    }
    public String getVal() {
        return val;
    }
    public void setVal(String value) {
        this.val = value;
    }
    public String getReceivedAmountSwitch() {
        return receivedAmountSwitch;
    }
    public void setReceivedAmountSwitch(String receivedAmountSwitch) {
        this.receivedAmountSwitch = receivedAmountSwitch;
    }
    public String getOwnerId() {
        return ownerId;
    }
    public void setOwnerId(String ownerId) {
        this.ownerId = ownerId;
    }
    public Date getNowDate() {
        return nowDate;
    }
    public void setNowDate(Date nowDate) {
        this.nowDate = nowDate;
    }
    public int getCount() {
        return count;
    }
    public void setCount(int count) {
        this.count = count;
    }
    public String getComputingFormulaText() {
        return computingFormulaText;
    }
    public void setComputingFormulaText(String computingFormulaText) {
        this.computingFormulaText = computingFormulaText;
    }
    public String getMwPrice() {
        return mwPrice;
    }
    public void setMwPrice(String mwPrice) {
        this.mwPrice = mwPrice;
    }
    public String getCarTypeCd() {
        return carTypeCd;
    }
    public void setCarTypeCd(String carTypeCd) {
        this.carTypeCd = carTypeCd;
    }
    public String getCycle() {
        return cycle;
    }
    public void setCycle(String cycle) {
        this.cycle = cycle;
    }
    public double getFeeTotalPrice() {
        return feeTotalPrice;
    }
    public void setFeeTotalPrice(double feeTotalPrice) {
        this.feeTotalPrice = feeTotalPrice;
    }
}