From 110d6060625a25f2546c4de3b3a57117d9cf769a Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期二, 24 一月 2023 11:46:32 +0800
Subject: [PATCH] 门禁白名单同步
---
java110-bean/src/main/java/com/java110/dto/RoomDto.java | 206 ++++++++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 195 insertions(+), 11 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
old mode 100644
new mode 100755
index 288ec61..f568c3f
--- a/java110-bean/src/main/java/com/java110/dto/RoomDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/RoomDto.java
@@ -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;
@@ -14,47 +16,80 @@
**/
public class RoomDto extends PageDto implements Serializable {
- public static final String STATE_SELL = "2001";
+ 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_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";//鍟嗛摵
- private String unitPrice;
+ 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;
private String remark;
private String userId;
private String roomId;
private String[] roomIds;
private String layer;
+ private String[] layers;
private String builtUpArea;
private String roomNum;
+ private String roomNumLike;
+
private String unitId;
+ private String[] unitIds;
+ private String unitArea;
private String apartment;
private String apartmentName;
private String communityId;
private String floorId;
+ private String[] floorIds;
private String floorNum;
+ private String floorArea;
private String userName;
private String ownerId;
private String ownerName;
+ private String ownerNameLike;
private String idCard;
private String link;
-
+ private String roomType;
+ private String roomSubType;
+ private String roomSubTypeName;
+ private String roomRent;
+ private String roomArea;
+ private String oweAmount;
private String state;
+ private String[] states;
+ private String stateName;
private String unitNum;
private List<RoomAttrDto> roomAttrDto;
+ private List<FeeDto> fees;
private Date createTime;
+ private Date startTime;
+ private Date endTime;
+
+ private String roomName;
private String statusCd = "0";
-
- public String getUnitPrice() {
- return unitPrice;
+ public String getFeeCoefficient() {
+ return feeCoefficient;
}
- public void setUnitPrice(String unitPrice) {
- this.unitPrice = unitPrice;
+ public void setFeeCoefficient(String feeCoefficient) {
+ this.feeCoefficient = feeCoefficient;
}
public String getSection() {
@@ -129,7 +164,6 @@
this.apartment = apartment;
}
-
public Date getCreateTime() {
return createTime;
}
@@ -153,7 +187,6 @@
public void setRoomAttrDto(List<RoomAttrDto> roomAttrDto) {
this.roomAttrDto = roomAttrDto;
}
-
public String getCommunityId() {
return communityId;
@@ -211,7 +244,6 @@
this.floorNum = floorNum;
}
-
public String[] getRoomIds() {
return roomIds;
}
@@ -251,4 +283,156 @@
public void setLink(String link) {
this.link = link;
}
+
+ public String getUnitArea() {
+ return unitArea;
+ }
+
+ public void setUnitArea(String unitArea) {
+ this.unitArea = unitArea;
+ }
+
+ public String getFloorArea() {
+ return floorArea;
+ }
+
+ public void setFloorArea(String floorArea) {
+ this.floorArea = floorArea;
+ }
+
+ public String getStateName() {
+ return stateName;
+ }
+
+ public void setStateName(String stateName) {
+ this.stateName = stateName;
+ }
+
+ public String[] getStates() {
+ return states;
+ }
+
+ 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;
+ }
+
+ 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;
+ }
+
+ public String getRoomSubTypeName() {
+ return roomSubTypeName;
+ }
+
+ public void setRoomSubTypeName(String roomSubTypeName) {
+ this.roomSubTypeName = roomSubTypeName;
+ }
+
+ public Date getStartTime() {
+ return startTime;
+ }
+
+ public void setStartTime(Date startTime) {
+ this.startTime = startTime;
+ }
+
+ public Date getEndTime() {
+ return endTime;
+ }
+
+ public void setEndTime(Date endTime) {
+ this.endTime = endTime;
+ }
+
+ public String getOweAmount() {
+ return oweAmount;
+ }
+
+ public void setOweAmount(String oweAmount) {
+ this.oweAmount = oweAmount;
+ }
+
+ public String[] getFloorIds() {
+ return floorIds;
+ }
+
+ public void setFloorIds(String[] floorIds) {
+ this.floorIds = floorIds;
+ }
+
+ public String getRoomNumLike() {
+ return roomNumLike;
+ }
+
+ public void setRoomNumLike(String roomNumLike) {
+ this.roomNumLike = roomNumLike;
+ }
+
+ public String getOwnerNameLike() {
+ return ownerNameLike;
+ }
+
+ 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;
+ }
}
--
Gitblit v1.8.0