10 changed files with 225 additions and 1 deletions
@ -0,0 +1,34 @@ |
|||||
|
package com.epmet.resi.group.dto.group.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.Min; |
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author sun |
||||
|
* @Description 所有小组查询-接口入参 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class AllGroupListFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
/** |
||||
|
* 网格Id |
||||
|
*/ |
||||
|
@NotBlank(message = "网格Id不能为空", groups = {AllGroupListFormDTO.GroupList.class}) |
||||
|
private String gridId; |
||||
|
/** |
||||
|
* 请求页码 |
||||
|
*/ |
||||
|
@Min(1) |
||||
|
private int pageNo; |
||||
|
/** |
||||
|
* 每页多少条数据 |
||||
|
*/ |
||||
|
private int pageSize = 20; |
||||
|
|
||||
|
public interface GroupList { |
||||
|
} |
||||
|
} |
@ -0,0 +1,51 @@ |
|||||
|
package com.epmet.resi.group.dto.group.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description 推荐小组查询返参 |
||||
|
* @Author yinzuomei |
||||
|
* @Date 2020/3/28 17:11 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class AllGroupListResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -155229599412911489L; |
||||
|
/** |
||||
|
* 群组id |
||||
|
*/ |
||||
|
private String groupId; |
||||
|
|
||||
|
/** |
||||
|
* 群组头像 |
||||
|
*/ |
||||
|
private String groupHeadPhoto; |
||||
|
|
||||
|
/** |
||||
|
* 群组名称 |
||||
|
*/ |
||||
|
private String groupName; |
||||
|
|
||||
|
/** |
||||
|
* 成员总数 |
||||
|
*/ |
||||
|
private Integer totalMember; |
||||
|
|
||||
|
/** |
||||
|
* 党员总数 |
||||
|
*/ |
||||
|
private Integer totalPartyMember; |
||||
|
|
||||
|
/** |
||||
|
* under_auditting审核中、rejected已拒绝的前端显示加入 |
||||
|
*/ |
||||
|
private String status=""; |
||||
|
|
||||
|
/** |
||||
|
* 小组类型(ordinary:楼院小组 branch:支部小组) |
||||
|
*/ |
||||
|
private String groupType; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue