9 changed files with 212 additions and 3 deletions
@ -0,0 +1,18 @@ |
|||
package com.epmet.resi.group.dto.group.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author zhaoqifeng |
|||
* @Date 2021/8/25 14:01 |
|||
*/ |
|||
@Data |
|||
public class LastTextDTO implements Serializable { |
|||
private static final long serialVersionUID = 4908205806172407179L; |
|||
private String textId; |
|||
private String topicContent; |
|||
private String type; |
|||
} |
@ -0,0 +1,59 @@ |
|||
package com.epmet.resi.group.dto.group.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author zhaoqifeng |
|||
* @Date 2021/8/25 14:05 |
|||
*/ |
|||
@Data |
|||
public class MyGroupV2ResultDTO implements Serializable { |
|||
private static final long serialVersionUID = -3299763394428383259L; |
|||
/** |
|||
* 群组id |
|||
*/ |
|||
private String groupId; |
|||
|
|||
/** |
|||
* 群组头像 |
|||
*/ |
|||
private String groupHeadPhoto; |
|||
|
|||
/** |
|||
* 群组名称 |
|||
*/ |
|||
private String groupName; |
|||
|
|||
/** |
|||
* 成员总数 |
|||
*/ |
|||
private Integer totalMember; |
|||
|
|||
/** |
|||
* 党员总数 |
|||
*/ |
|||
private Integer totalPartyMember; |
|||
|
|||
/** |
|||
* (审核通过 - approved 、 审核中 - under_auditting、 审核未通过 - rejected 、 已屏蔽 - hidden、 已关闭 - closed) |
|||
*/ |
|||
private String groupState; |
|||
|
|||
/** |
|||
* member成员,leader群主 |
|||
*/ |
|||
private String groupLeaderFlag; |
|||
|
|||
/** |
|||
* 最新话题 |
|||
*/ |
|||
private LastTextDTO lastText; |
|||
|
|||
/** |
|||
* 小组类型(ordinary:楼院小组 branch:支部小组) |
|||
*/ |
|||
private String groupType; |
|||
} |
Loading…
Reference in new issue