|
|
@@ -1,9 +1,11 @@
|
|
|
package com.java110.vo.api.community;
|
|
|
|
|
|
+import com.java110.dto.community.CommunityAttrDto;
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
|
-import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
|
|
|
-public class ApiCommunityDataVo implements Serializable {
|
|
|
+public class ApiCommunityDataVo implements Serializable {
|
|
|
|
|
|
private String communityMemberId;
|
|
|
private String communityId;
|
|
|
@@ -23,6 +25,8 @@ public class ApiCommunityDataVo implements Serializable {
|
|
|
private String storeTypeName;
|
|
|
private String tel;
|
|
|
|
|
|
+ private List<CommunityAttrDto> communityAttrDtos;
|
|
|
+
|
|
|
public String getCommunityId() {
|
|
|
return communityId;
|
|
|
}
|
|
|
@@ -158,4 +162,12 @@ public class ApiCommunityDataVo implements Serializable {
|
|
|
public void setAuditStatusCd(String auditStatusCd) {
|
|
|
this.auditStatusCd = auditStatusCd;
|
|
|
}
|
|
|
+
|
|
|
+ public List<CommunityAttrDto> getCommunityAttrDtos() {
|
|
|
+ return communityAttrDtos;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCommunityAttrDtos(List<CommunityAttrDto> communityAttrDtos) {
|
|
|
+ this.communityAttrDtos = communityAttrDtos;
|
|
|
+ }
|
|
|
}
|