java110
2021-03-10 0b9121d1646b57aa4e1e276d0af6acdbeccaaf53
java110-bean/src/main/java/com/java110/po/room/RoomPo.java
@@ -20,11 +20,12 @@
    private String section;
    private String apartment;
    private String builtUpArea;
    private String unitPrice;
    private String feeCoefficient;
    private String userId;
    private String remark;
    private String state;
    private String communityId;
    private String roomType;
    public String getRoomId() {
@@ -83,13 +84,6 @@
        this.builtUpArea = builtUpArea;
    }
    public String getUnitPrice() {
        return unitPrice;
    }
    public void setUnitPrice(String unitPrice) {
        this.unitPrice = unitPrice;
    }
    public String getUserId() {
        return userId;
@@ -122,4 +116,20 @@
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
    public String getFeeCoefficient() {
        return feeCoefficient;
    }
    public void setFeeCoefficient(String feeCoefficient) {
        this.feeCoefficient = feeCoefficient;
    }
    public String getRoomType() {
        return roomType;
    }
    public void setRoomType(String roomType) {
        this.roomType = roomType;
    }
}