From 2bcd6e70296bcc6df88817ea7ad9ebd1edc89955 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 10 十二月 2020 23:35:26 +0800
Subject: [PATCH] 优化认证功能
---
java110-bean/src/main/java/com/java110/dto/community/CommunityDto.java | 11 +++++++++++
1 files changed, 11 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 ce82ab8..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
@@ -34,6 +35,8 @@
private String parentAreaName;
private String communityArea;
+
+ private List<CommunityAttrDto> communityAttrDtos;
private Date createTime;
@@ -202,4 +205,12 @@
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