From 8a2a463d46b3dce73015462c9f6a2a258dd25f5b Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期五, 25 二月 2022 11:40:11 +0800
Subject: [PATCH] 优化diamante

---
 java110-bean/src/main/java/com/java110/po/room/RoomPo.java |   65 +++++++++++++++++++++++++++-----
 1 files changed, 55 insertions(+), 10 deletions(-)

diff --git a/java110-bean/src/main/java/com/java110/po/room/RoomPo.java b/java110-bean/src/main/java/com/java110/po/room/RoomPo.java
old mode 100644
new mode 100755
index e97b790..3c45d72
--- a/java110-bean/src/main/java/com/java110/po/room/RoomPo.java
+++ b/java110-bean/src/main/java/com/java110/po/room/RoomPo.java
@@ -20,12 +20,16 @@
     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;
+    private String statusCd;
+    private String roomSubType;
+    private String roomRent;
+    private String roomArea;
 
     public String getRoomId() {
         return roomId;
@@ -83,14 +87,6 @@
         this.builtUpArea = builtUpArea;
     }
 
-    public String getUnitPrice() {
-        return unitPrice;
-    }
-
-    public void setUnitPrice(String unitPrice) {
-        this.unitPrice = unitPrice;
-    }
-
     public String getUserId() {
         return userId;
     }
@@ -122,4 +118,53 @@
     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;
+    }
+
+    public String getStatusCd() {
+        return statusCd;
+    }
+
+    public void setStatusCd(String statusCd) {
+        this.statusCd = statusCd;
+    }
+
+    public String getRoomSubType() {
+        return roomSubType;
+    }
+
+    public void setRoomSubType(String roomSubType) {
+        this.roomSubType = roomSubType;
+    }
+
+    public String getRoomRent() {
+        return roomRent;
+    }
+
+    public void setRoomRent(String roomRent) {
+        this.roomRent = roomRent;
+    }
+
+    public String getRoomArea() {
+        return roomArea;
+    }
+
+    public void setRoomArea(String roomArea) {
+        this.roomArea = roomArea;
+    }
+
 }

--
Gitblit v1.8.0