From cddcf22a61489ee9c2dfee169d817ccd66f95430 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期五, 03 九月 2021 02:23:43 +0800
Subject: [PATCH] 优化代码
---
java110-bean/src/main/java/com/java110/dto/community/CommunityDto.java | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 111 insertions(+), 0 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/community/CommunityDto.java b/java110-bean/src/main/java/com/java110/dto/community/CommunityDto.java
old mode 100644
new mode 100755
index 191cd02..a8abd2f
--- a/java110-bean/src/main/java/com/java110/dto/community/CommunityDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/community/CommunityDto.java
@@ -4,6 +4,7 @@
import java.io.Serializable;
import java.util.Date;
+import java.util.List;
/**
* @ClassName FloorDto
@@ -20,12 +21,25 @@
private String cityCode;
private String name;
private String communityId;
+ private String[] notInCommunityId;
private String mapY;
private String mapX;
private String memberId;
private String state;
private String stateName;
+ private String[] communityIds;
+ private String auditStatusCd;
+ private String areaCode;
+ private String areaName;
+ private String cityName;
+ private String provName;
+ private String parentAreaCode;
+ private String parentAreaName;
+ private String tel;
+ private String communityArea;
+
+ private List<CommunityAttrDto> communityAttrDtos;
private Date createTime;
@@ -129,4 +143,101 @@
public void setStateName(String stateName) {
this.stateName = stateName;
}
+
+ public String[] getCommunityIds() {
+ return communityIds;
+ }
+
+ public void setCommunityIds(String[] communityIds) {
+ this.communityIds = communityIds;
+ }
+
+ public String getAuditStatusCd() {
+ return auditStatusCd;
+ }
+
+ public void setAuditStatusCd(String auditStatusCd) {
+ this.auditStatusCd = auditStatusCd;
+ }
+
+ public String[] getNotInCommunityId() {
+ return notInCommunityId;
+ }
+
+ public void setNotInCommunityId(String[] notInCommunityId) {
+ this.notInCommunityId = notInCommunityId;
+ }
+
+ public String getAreaCode() {
+ return areaCode;
+ }
+
+ public void setAreaCode(String areaCode) {
+ this.areaCode = areaCode;
+ }
+
+ public String getAreaName() {
+ return areaName;
+ }
+
+ public void setAreaName(String areaName) {
+ this.areaName = areaName;
+ }
+
+ public String getParentAreaCode() {
+ return parentAreaCode;
+ }
+
+ public void setParentAreaCode(String parentAreaCode) {
+ this.parentAreaCode = parentAreaCode;
+ }
+
+ public String getParentAreaName() {
+ return parentAreaName;
+ }
+
+ public void setParentAreaName(String parentAreaName) {
+ this.parentAreaName = parentAreaName;
+ }
+
+
+ public String getCommunityArea() {
+ return communityArea;
+ }
+
+ public void setCommunityArea(String communityArea) {
+ this.communityArea = communityArea;
+ }
+
+ public List<CommunityAttrDto> getCommunityAttrDtos() {
+ return communityAttrDtos;
+ }
+
+ public void setCommunityAttrDtos(List<CommunityAttrDto> communityAttrDtos) {
+ this.communityAttrDtos = communityAttrDtos;
+ }
+
+ public String getCityName() {
+ return cityName;
+ }
+
+ public void setCityName(String cityName) {
+ this.cityName = cityName;
+ }
+
+ public String getProvName() {
+ return provName;
+ }
+
+ public void setProvName(String provName) {
+ this.provName = provName;
+ }
+
+ public String getTel() {
+ return tel;
+ }
+
+ public void setTel(String tel) {
+ this.tel = tel;
+ }
}
--
Gitblit v1.8.0