From 8067f46ddedde36c4e0f8ab9c7fbbdc29c2b0bad Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期二, 21 二月 2023 11:02:12 +0800
Subject: [PATCH] 优化代码

---
 java110-bean/src/main/java/com/java110/dto/RoomDto.java |  111 +++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 107 insertions(+), 4 deletions(-)

diff --git a/java110-bean/src/main/java/com/java110/dto/RoomDto.java b/java110-bean/src/main/java/com/java110/dto/RoomDto.java
index 096dda9..05b1da5 100755
--- a/java110-bean/src/main/java/com/java110/dto/RoomDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/RoomDto.java
@@ -19,17 +19,18 @@
     public static final String STATE_SELL = "2001"; // 宸插叆浣�
     public static final String STATE_FREE = "2002"; //鏈攢鍞�
     public static final String STATE_DELIVERY = "2003";//宸蹭氦鎴�
+    public static final String STATE_NO_HOME = "2004";//鏈叆浣�
     public static final String STATE_RENOVATION = "2005";//宸茶淇�
-    public static final String STATE_SHOP_FIRE = "2006";//宸茬粡绉�
+    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 STATE_SHOP_REPAIR = "2009";//瑁呬慨涓�
     public static final String ROOM_TYPE_ROOM = "1010301";//鏅�氭埧灞�
     public static final String ROOM_TYPE_SHOPS = "2020602";//鍟嗛摵
 
     public static final String ROOM_SUB_TYPE_PERSON = "110";
     public static final String ROOM_SUB_TYPE_WORK = "119";
     public static final String ROOM_SUB_TYPE_HOUSE = "120";
-
 
     private String feeCoefficient;
     private String section;
@@ -44,6 +45,7 @@
     private String roomNumLike;
 
     private String unitId;
+    private String[] unitIds;
     private String unitArea;
     private String apartment;
     private String apartmentName;
@@ -78,8 +80,23 @@
     private Date startTime;
     private Date endTime;
 
+    private String roomName;
 
     private String statusCd = "0";
+
+    private String ownerTel; // 杩欎釜绋嬪簭鐢紝瀵瑰涓嶈緭鍑�
+
+    private String memberCount;
+    private String carCount;
+    private String roomCount;
+    private String complaintCount;
+    private String repairCount;
+    private String roomOweFee;
+    private String oweFee;
+
+    private String contractCount;
+
+
 
     public String getFeeCoefficient() {
         return feeCoefficient;
@@ -161,7 +178,6 @@
         this.apartment = apartment;
     }
 
-
     public Date getCreateTime() {
         return createTime;
     }
@@ -185,7 +201,6 @@
     public void setRoomAttrDto(List<RoomAttrDto> roomAttrDto) {
         this.roomAttrDto = roomAttrDto;
     }
-
 
     public String getCommunityId() {
         return communityId;
@@ -418,4 +433,92 @@
     public void setOwnerNameLike(String ownerNameLike) {
         this.ownerNameLike = ownerNameLike;
     }
+
+    public String getRoomName() {
+        return roomName;
+    }
+
+    public void setRoomName(String roomName) {
+        this.roomName = roomName;
+    }
+
+    public String[] getUnitIds() {
+        return unitIds;
+    }
+
+    public void setUnitIds(String[] unitIds) {
+        this.unitIds = unitIds;
+    }
+
+    public String getMemberCount() {
+        return memberCount;
+    }
+
+    public void setMemberCount(String memberCount) {
+        this.memberCount = memberCount;
+    }
+
+    public String getCarCount() {
+        return carCount;
+    }
+
+    public void setCarCount(String carCount) {
+        this.carCount = carCount;
+    }
+
+    public String getRoomCount() {
+        return roomCount;
+    }
+
+    public void setRoomCount(String roomCount) {
+        this.roomCount = roomCount;
+    }
+
+    public String getComplaintCount() {
+        return complaintCount;
+    }
+
+    public void setComplaintCount(String complaintCount) {
+        this.complaintCount = complaintCount;
+    }
+
+    public String getRepairCount() {
+        return repairCount;
+    }
+
+    public void setRepairCount(String repairCount) {
+        this.repairCount = repairCount;
+    }
+
+    public String getRoomOweFee() {
+        return roomOweFee;
+    }
+
+    public void setRoomOweFee(String roomOweFee) {
+        this.roomOweFee = roomOweFee;
+    }
+
+    public String getOweFee() {
+        return oweFee;
+    }
+
+    public void setOweFee(String oweFee) {
+        this.oweFee = oweFee;
+    }
+
+    public String getContractCount() {
+        return contractCount;
+    }
+
+    public void setContractCount(String contractCount) {
+        this.contractCount = contractCount;
+    }
+
+    public String getOwnerTel() {
+        return ownerTel;
+    }
+
+    public void setOwnerTel(String ownerTel) {
+        this.ownerTel = ownerTel;
+    }
 }

--
Gitblit v1.8.0