From af24b40f3bc017fb30f1cf32fda0b32aca3fe19f Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期三, 08 三月 2023 00:50:20 +0800
Subject: [PATCH] 优化充电桩厂家
---
java110-bean/src/main/java/com/java110/dto/RoomDto.java | 179 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 172 insertions(+), 7 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 a325646..05b1da5 100755
--- a/java110-bean/src/main/java/com/java110/dto/RoomDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/RoomDto.java
@@ -17,19 +17,20 @@
public class RoomDto extends PageDto implements Serializable {
public static final String STATE_SELL = "2001"; // 宸插叆浣�
- public static final String STATE_FREE = "2002"; //鏈叆浣�
+ 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;
@@ -41,23 +42,30 @@
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;
@@ -68,10 +76,26 @@
private List<FeeDto> fees;
-
private Date createTime;
+ 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() {
@@ -154,7 +178,6 @@
this.apartment = apartment;
}
-
public Date getCreateTime() {
return createTime;
}
@@ -178,7 +201,6 @@
public void setRoomAttrDto(List<RoomAttrDto> roomAttrDto) {
this.roomAttrDto = roomAttrDto;
}
-
public String getCommunityId() {
return communityId;
@@ -235,7 +257,6 @@
public void setFloorNum(String floorNum) {
this.floorNum = floorNum;
}
-
public String[] getRoomIds() {
return roomIds;
@@ -356,4 +377,148 @@
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;
+ }
+
+ 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