11 changed files with 285 additions and 5 deletions
@ -0,0 +1,32 @@ |
|||
package com.epmet.evaluationindex.screen.dto.form; |
|||
|
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.Min; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 邻里党群-社群人数排名-接口入参 |
|||
* @Author sun |
|||
*/ |
|||
@Data |
|||
public class GroupTopicShiftIssueRatioRankFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -2880432640584616651L; |
|||
/** |
|||
* 页码,从1开始 |
|||
*/ |
|||
@Min(value = 1, message = "页码必须大于0", groups = { AddUserInternalGroup.class }) |
|||
private Integer pageNo; |
|||
/** |
|||
* 页容量,默认10页 |
|||
*/ |
|||
@Min(value = 1, message = "每页条数必须大于0", groups = { AddUserInternalGroup.class }) |
|||
private Integer pageSize; |
|||
/** |
|||
* 客户Id |
|||
*/ |
|||
private String customerId; |
|||
public interface AddUserInternalGroup {} |
|||
|
|||
} |
@ -0,0 +1,32 @@ |
|||
package com.epmet.evaluationindex.screen.dto.form; |
|||
|
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.Min; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 邻里党群-社群人数排名-接口入参 |
|||
* @Author sun |
|||
*/ |
|||
@Data |
|||
public class GroupUserCountRankFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -2880432640584616651L; |
|||
/** |
|||
* 页码,从1开始 |
|||
*/ |
|||
@Min(value = 1, message = "页码必须大于0", groups = { AddUserInternalGroup.class }) |
|||
private Integer pageNo; |
|||
/** |
|||
* 页容量,默认10页 |
|||
*/ |
|||
@Min(value = 1, message = "每页条数必须大于0", groups = { AddUserInternalGroup.class }) |
|||
private Integer pageSize; |
|||
/** |
|||
* 客户Id |
|||
*/ |
|||
private String customerId; |
|||
public interface AddUserInternalGroup {} |
|||
|
|||
} |
@ -0,0 +1,33 @@ |
|||
package com.epmet.evaluationindex.screen.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 公益互助-个人(志愿者)公益时长排名 |
|||
* @Author sun |
|||
*/ |
|||
@Data |
|||
public class GroupTopicShiftIssueRatioRankResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 3860268744336541373L; |
|||
|
|||
/** |
|||
* 小组id |
|||
*/ |
|||
private String groupId = ""; |
|||
/** |
|||
* 小组名称 |
|||
*/ |
|||
private String groupName = ""; |
|||
/** |
|||
* 话题数量 |
|||
*/ |
|||
private Integer topicCount = 0; |
|||
/** |
|||
* 群主名称 |
|||
*/ |
|||
private String groupLeader = ""; |
|||
|
|||
} |
@ -0,0 +1,33 @@ |
|||
package com.epmet.evaluationindex.screen.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 公益互助-个人(志愿者)公益时长排名 |
|||
* @Author sun |
|||
*/ |
|||
@Data |
|||
public class GroupUserCountRankResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 3860268744336541373L; |
|||
|
|||
/** |
|||
* 小组id |
|||
*/ |
|||
private String groupId = ""; |
|||
/** |
|||
* 小组名称 |
|||
*/ |
|||
private String groupName = ""; |
|||
/** |
|||
* 群成员数 |
|||
*/ |
|||
private Integer memberCount = 0; |
|||
/** |
|||
* 群主名称 |
|||
*/ |
|||
private String groupLeader = ""; |
|||
|
|||
} |
Loading…
Reference in new issue