|
|
@ -16,12 +16,10 @@ import java.util.List; |
|
|
|
public class ResiAroundPartyPointRankFormDTO implements Serializable { |
|
|
|
private static final long serialVersionUID = 1534061512200591149L; |
|
|
|
|
|
|
|
public interface ResiAroundPartyPointRankGroup extends CustomerClientShowGroup{} |
|
|
|
|
|
|
|
/** |
|
|
|
* 页码 |
|
|
|
* */ |
|
|
|
@Min(value = 1,groups = ResiAroundPartyPointRankGroup.class) |
|
|
|
@Min(value = 1) |
|
|
|
private Integer pageNo = 1; |
|
|
|
|
|
|
|
/** |
|
|
@ -32,19 +30,19 @@ public class ResiAroundPartyPointRankFormDTO implements Serializable { |
|
|
|
/** |
|
|
|
* 身边党员 grid 社区党员community |
|
|
|
* */ |
|
|
|
@NotBlank(message = "查询的部门维度scope不能为空",groups = ResiAroundPartyPointRankFormDTO.ResiAroundPartyPointRankGroup.class) |
|
|
|
@NotBlank(message = "查询的部门维度scope不能为空") |
|
|
|
private String scope; |
|
|
|
|
|
|
|
/** |
|
|
|
* 本月 monthly 总排行 all; |
|
|
|
* */ |
|
|
|
@NotBlank(message = "查询的时间维度type不能为空",groups = ResiAroundPartyPointRankFormDTO.ResiAroundPartyPointRankGroup.class) |
|
|
|
@NotBlank(message = "查询的时间维度type不能为空") |
|
|
|
private String type; |
|
|
|
|
|
|
|
/** |
|
|
|
* 当前网格id |
|
|
|
* */ |
|
|
|
@NotBlank(message = "网格id不能为空",groups = ResiAroundPartyPointRankFormDTO.ResiAroundPartyPointRankGroup.class) |
|
|
|
@NotBlank(message = "网格id不能为空") |
|
|
|
private String gridId; |
|
|
|
|
|
|
|
/** |
|
|
|