9 changed files with 181 additions and 16 deletions
@ -0,0 +1,29 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/11/4 3:51 下午 |
|||
*/ |
|||
@Data |
|||
public class CertificationDetailFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -398879254354767770L; |
|||
|
|||
public interface CertificationDetail{} |
|||
|
|||
@NotBlank(message = "客户ID不能为空",groups = {CertificationDetail.class}) |
|||
private String customerId; |
|||
|
|||
@NotBlank(message = "徽章ID不能为空",groups = {CertificationDetail.class}) |
|||
private String badgeId; |
|||
|
|||
/** |
|||
* 客户ID |
|||
*/ |
|||
private String userId; |
|||
} |
|||
@ -0,0 +1,60 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/11/4 3:51 下午 |
|||
*/ |
|||
@Data |
|||
public class CertificationDetailResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 6538150132908927308L; |
|||
|
|||
/** |
|||
* 姓 |
|||
*/ |
|||
private String surname; |
|||
|
|||
/** |
|||
* 名 |
|||
*/ |
|||
private String name; |
|||
|
|||
/** |
|||
* 身份证号 |
|||
*/ |
|||
private String idNum; |
|||
|
|||
/** |
|||
* 是否认证 yes 认证 no 已认证 |
|||
*/ |
|||
private String isCertificated; |
|||
|
|||
/** |
|||
* 手机号 |
|||
*/ |
|||
private String mobile; |
|||
|
|||
/** |
|||
* 认证图片地址 |
|||
*/ |
|||
private String certificationImg; |
|||
|
|||
/** |
|||
* 备注 |
|||
*/ |
|||
private String remark; |
|||
|
|||
/** |
|||
* 审核结果 |
|||
*/ |
|||
private String authResult; |
|||
|
|||
/** |
|||
* 驳回原因 |
|||
*/ |
|||
private String authReason; |
|||
} |
|||
Loading…
Reference in new issue