From 3e0fbd3a04babb4ef123ee7b25e52deec48ad7ec Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期日, 20 十二月 2020 18:36:31 +0800
Subject: [PATCH] 优化代码
---
java110-bean/src/main/java/com/java110/dto/community/CommunityDto.java | 22 ++++++++++++++++++++++
1 files changed, 22 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
index b873400..3072f25 100644
--- 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
@@ -32,6 +33,10 @@
private String areaName;
private String parentAreaCode;
private String parentAreaName;
+
+ private String communityArea;
+
+ private List<CommunityAttrDto> communityAttrDtos;
private Date createTime;
@@ -191,4 +196,21 @@
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;
+ }
}
--
Gitblit v1.8.0