java110
2021-05-05 2d079ac843ebcb335f2ef7d6952f9700a16fddde
java110-bean/src/main/java/com/java110/dto/RoomDto.java
old mode 100644 new mode 100755
@@ -1,5 +1,7 @@
package com.java110.dto;
import com.java110.dto.fee.FeeDto;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
@@ -18,6 +20,11 @@
    public static final String STATE_FREE = "2002"; //未入住
    public static final String STATE_DELIVERY = "2003";//已交房
    public static final String STATE_RENOVATION = "2005";//已装修
    public static final String STATE_SHOP_FIRE = "2006";//已经租
    public static final String STATE_SHOP_SELL = "2007";//已售
    public static final String STATE_SHOP_FREE = "2008";//空闲
    public static final String ROOM_TYPE_ROOM = "1010301";//普通房屋
    public static final String ROOM_TYPE_SHOPS = "2020602";//商铺
    private String feeCoefficient;
@@ -27,6 +34,7 @@
    private String roomId;
    private String[] roomIds;
    private String layer;
    private String[] layers;
    private String builtUpArea;
    private String roomNum;
    private String unitId;
@@ -42,6 +50,7 @@
    private String ownerName;
    private String idCard;
    private String link;
    private String roomType;
    private String state;
@@ -50,6 +59,8 @@
    private String unitNum;
    private List<RoomAttrDto> roomAttrDto;
    private List<FeeDto> fees;
    private Date createTime;
@@ -291,4 +302,28 @@
    public void setStates(String[] states) {
        this.states = states;
    }
    public String getRoomType() {
        return roomType;
    }
    public void setRoomType(String roomType) {
        this.roomType = roomType;
    }
    public List<FeeDto> getFees() {
        return fees;
    }
    public void setFees(List<FeeDto> fees) {
        this.fees = fees;
    }
    public String[] getLayers() {
        return layers;
    }
    public void setLayers(String[] layers) {
        this.layers = layers;
    }
}