17 changed files with 261 additions and 7 deletions
@ -0,0 +1,32 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.Min; |
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author sun |
|||
* @Description 公众号-查询公众号注册的客户列表-接口入参 |
|||
*/ |
|||
@Data |
|||
public class RegisterInfoFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -6547893374373422628L; |
|||
|
|||
public interface AddUserInternalGroup { |
|||
} |
|||
|
|||
/** |
|||
* 当前页 |
|||
* */ |
|||
@Min(value = 1) |
|||
private Integer pageNo = 1; |
|||
|
|||
/** |
|||
* 每页显示数量 |
|||
* */ |
|||
private Integer pageSize = 20; |
|||
|
|||
} |
@ -0,0 +1,65 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author sun |
|||
* @Description 公众号-查询公众号注册的客户列表-接口返参 |
|||
*/ |
|||
@Data |
|||
public class CustomerAgencyResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 3253989119352850315L; |
|||
|
|||
/** |
|||
* 客户Id |
|||
*/ |
|||
private String customerId = ""; |
|||
/** |
|||
* 组织Id |
|||
*/ |
|||
private String agencyId = ""; |
|||
/** |
|||
* 组织名称 |
|||
*/ |
|||
private String agencyName = ""; |
|||
/** |
|||
* 组织级别 |
|||
*/ |
|||
private String level = ""; |
|||
/** |
|||
* 省 |
|||
*/ |
|||
private String province = ""; |
|||
/** |
|||
* 市 |
|||
*/ |
|||
private String city = ""; |
|||
/** |
|||
* 区 |
|||
*/ |
|||
private String district = ""; |
|||
/** |
|||
* 党支部数量 |
|||
*/ |
|||
private Integer partybranchnum; |
|||
/** |
|||
* 居民端授权状态(0:未授权,1:已授权) |
|||
*/ |
|||
private Integer resiAuth; |
|||
/** |
|||
* 政府端授权状态(0:未授权,1:已授权) |
|||
*/ |
|||
private Integer workAuth; |
|||
/** |
|||
* 政府端授权状态(0:未授权,1:已授权) |
|||
*/ |
|||
private Integer initState; |
|||
/** |
|||
* 注册人手机号 |
|||
*/ |
|||
private String phone; |
|||
|
|||
} |
@ -0,0 +1,26 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Author sun |
|||
* @Description 公众号-查询公众号注册的客户列表-接口返参 |
|||
*/ |
|||
@Data |
|||
public class RegisterInfoResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 3253989119352850315L; |
|||
|
|||
/** |
|||
* 总记录数 |
|||
*/ |
|||
private Integer total; |
|||
/** |
|||
* 客户组织列表 |
|||
*/ |
|||
private List<CustomerAgencyResultDTO> agencyList; |
|||
|
|||
} |
Loading…
Reference in new issue