From 7aec551e05669759c0c52a63f2911316dd32314c Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 10 十二月 2020 22:52:09 +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