24 changed files with 497 additions and 2 deletions
@ -0,0 +1,34 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Auther zxc |
|||
* @Create 2020-04-27 13:33 |
|||
* 已认证党员详情 |
|||
*/ |
|||
@Data |
|||
public class CertifiedDetailFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 党员认证信息表ID |
|||
*/ |
|||
@NotBlank(message = "党员认证信息表ID不能为空") |
|||
private String partyMemberId; |
|||
|
|||
/** |
|||
* 党员自动审核表ID |
|||
*/ |
|||
private String autoId; |
|||
|
|||
/** |
|||
* 党员人工审核表ID |
|||
*/ |
|||
private String manualId; |
|||
|
|||
} |
@ -0,0 +1,72 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Auther zxc |
|||
* @Create 2020-04-27 13:37 |
|||
* 已认证党员详情 |
|||
*/ |
|||
@Data |
|||
public class CertifiedDetailResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -1L; |
|||
|
|||
/** |
|||
* 用户id |
|||
*/ |
|||
private String userId; |
|||
|
|||
/** |
|||
* 真实姓名 |
|||
*/ |
|||
private String realName; |
|||
|
|||
/** |
|||
* 联系手机号 |
|||
*/ |
|||
private String mobile; |
|||
|
|||
/** |
|||
* 身份证号 |
|||
*/ |
|||
private String idCard; |
|||
|
|||
/** |
|||
* 认证网格:XXX街道-XXX社区-XXX网格 |
|||
*/ |
|||
private String gridFullPath; |
|||
|
|||
/** |
|||
* 认证方式:自动认证auto、人工认证manual |
|||
*/ |
|||
private String certifyType; |
|||
|
|||
/** |
|||
* 认证时间(提交认证的时间) |
|||
*/ |
|||
private Long applyTime; |
|||
|
|||
/** |
|||
* 注册时间(进入本平台的时间) |
|||
*/ |
|||
private Long certifyTime; |
|||
|
|||
/** |
|||
* 工作单位/所处街道 |
|||
*/ |
|||
private String extraOrganization; |
|||
|
|||
/** |
|||
* 证明联系人 |
|||
*/ |
|||
private String contactPeople; |
|||
|
|||
/** |
|||
* 证明联系人手机号 |
|||
*/ |
|||
private String contactMobile; |
|||
|
|||
} |
@ -0,0 +1,34 @@ |
|||
package com.epmet.resi.partymember.dto.partymember.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Auther zxc |
|||
* @Create 2020-04-27 13:33 |
|||
* 已认证党员详情 |
|||
*/ |
|||
@Data |
|||
public class CertifiedDetailFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 党员认证信息表ID |
|||
*/ |
|||
@NotBlank(message = "党员认证信息表ID不能为空") |
|||
private String partyMemberId; |
|||
|
|||
/** |
|||
* 党员自动审核表ID |
|||
*/ |
|||
private String autoId; |
|||
|
|||
/** |
|||
* 党员人工审核表ID |
|||
*/ |
|||
private String manualId; |
|||
|
|||
} |
@ -0,0 +1,77 @@ |
|||
package com.epmet.resi.partymember.dto.partymember.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Auther zxc |
|||
* @Create 2020-04-27 13:37 |
|||
* 已认证党员详情 |
|||
*/ |
|||
@Data |
|||
public class CertifiedDetailResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -1L; |
|||
|
|||
/** |
|||
* 用户id |
|||
*/ |
|||
private String userId; |
|||
|
|||
/** |
|||
* 真实姓名(姓+名) |
|||
*/ |
|||
private String realName; |
|||
|
|||
/** |
|||
* 联系手机号 |
|||
*/ |
|||
private String mobile; |
|||
|
|||
/** |
|||
* 身份证号 |
|||
*/ |
|||
private String idCard; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 认证网格:XXX街道-XXX社区-XXX网格 |
|||
*/ |
|||
private String gridFullPath; |
|||
|
|||
/** |
|||
* 认证方式:自动认证auto、人工认证manual |
|||
*/ |
|||
private String certifyType; |
|||
|
|||
/** |
|||
* 认证时间(提交认证的时间) |
|||
*/ |
|||
private Long applyTime; |
|||
|
|||
/** |
|||
* 注册时间(进入本平台的时间) |
|||
*/ |
|||
private Long certifyTime; |
|||
|
|||
/** |
|||
* 工作单位/所处街道 |
|||
*/ |
|||
private String extraOrganization; |
|||
|
|||
/** |
|||
* 证明联系人 |
|||
*/ |
|||
private String contactPeople; |
|||
|
|||
/** |
|||
* 证明联系人手机号 |
|||
*/ |
|||
private String contactMobile; |
|||
|
|||
} |
@ -0,0 +1,21 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Auther zxc |
|||
* @Create 2020-04-27 16:08 |
|||
*/ |
|||
@Data |
|||
public class CreatedTimeByUserIdFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 用户id |
|||
*/ |
|||
private String userId; |
|||
|
|||
} |
@ -0,0 +1,21 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Auther zxc |
|||
* @Create 2020-04-27 16:08 |
|||
*/ |
|||
@Data |
|||
public class CreatedTimeByUserIdResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -1L; |
|||
|
|||
/** |
|||
* 注册时间 (empet_user库下的user表中的 created_time) |
|||
*/ |
|||
private Long registerTime; |
|||
|
|||
} |
Loading…
Reference in new issue