7 changed files with 221 additions and 3 deletions
@ -0,0 +1,27 @@ |
|||||
|
package com.elink.esua.epdc.dto.group; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
* 社群排行榜-活跃度 |
||||
|
* |
||||
|
* @Author:liuchuang |
||||
|
* @Date:2019/11/12 16:05 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GroupActivityDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -3033977017133093569L; |
||||
|
|
||||
|
/** |
||||
|
* 社群名称 |
||||
|
*/ |
||||
|
private String groupName; |
||||
|
|
||||
|
/** |
||||
|
* 所属网格 |
||||
|
*/ |
||||
|
private String ownGrid; |
||||
|
} |
@ -0,0 +1,29 @@ |
|||||
|
package com.elink.esua.epdc.dto.group; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author:liuchuang |
||||
|
* @Date:2019/11/12 16:07 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GroupMemberDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 5630344874027207828L; |
||||
|
|
||||
|
/** |
||||
|
* 社群名称 |
||||
|
*/ |
||||
|
private String groupName; |
||||
|
|
||||
|
/** |
||||
|
* 群成员数量 |
||||
|
*/ |
||||
|
private Integer memberNum; |
||||
|
|
||||
|
/** |
||||
|
* 所属网格 |
||||
|
*/ |
||||
|
private String ownGrid; |
||||
|
} |
Loading…
Reference in new issue