java110
2021-01-27 978f4888403350fd94e61220bd8ed07b118a2f6c
java110-bean/src/main/java/com/java110/dto/fee/FeeDto.java
@@ -1,6 +1,8 @@
package com.java110.dto.fee;
import com.java110.dto.PageDto;
import com.java110.dto.RoomDto;
import com.java110.dto.owner.OwnerCarDto;
import java.io.Serializable;
import java.util.Date;
@@ -42,6 +44,12 @@
    private String[] feeTypeCds;
    private String configId;
    //映射关系开关值
    private String val;
    //实收金额映射开关值
    private String receivedAmountSwitch;
    private String squarePrice;
    private String additionalAmount;
    private String state;
@@ -61,6 +69,7 @@
    private double oweFee; // 欠费金额
    private String billType;
    private String billTypeName;
    private String builtUpArea;
    private String paymentCd;
@@ -76,6 +85,8 @@
    private String ownerName;
    private String ownerTel;
    private String ownerId;
    private Date createTime;
@@ -104,6 +115,8 @@
    private Date curReadingTime;
    private List<FeeAttrDto> feeAttrDtos;
    public String getAmount() {
@@ -507,4 +520,38 @@
    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;
    }
}