14 changed files with 401 additions and 2 deletions
			
			
		@ -0,0 +1,44 @@ | 
				
			|||||
 | 
					package com.epmet.dto; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import lombok.Data; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import java.io.Serializable; | 
				
			||||
 | 
					import java.util.Date; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					/** | 
				
			||||
 | 
					 * @Author zxc | 
				
			||||
 | 
					 * @DateTime 2020/11/4 1:46 下午 | 
				
			||||
 | 
					 */ | 
				
			||||
 | 
					@Data | 
				
			||||
 | 
					public class UserBadgeCertificateRecordDTO implements Serializable { | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    private static final long serialVersionUID = 3207509834642386145L; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    private String customerId; | 
				
			||||
 | 
					    private String gridId; | 
				
			||||
 | 
					    private String userId; | 
				
			||||
 | 
					    private String badgeId; | 
				
			||||
 | 
					    private String surname; | 
				
			||||
 | 
					    private String name; | 
				
			||||
 | 
					    private String idNum; | 
				
			||||
 | 
					    private String certificationImg; | 
				
			||||
 | 
					    private String remark; | 
				
			||||
 | 
					    private String auditStatus; | 
				
			||||
 | 
					    private String auditRemark; | 
				
			||||
 | 
					    private String staffId; | 
				
			||||
 | 
					    private Date auditTime; | 
				
			||||
 | 
					    private String isLast; | 
				
			||||
 | 
					    private String delFlag; | 
				
			||||
 | 
					    private Integer revision; | 
				
			||||
 | 
					    private String createdBy; | 
				
			||||
 | 
					    private String updatedBy; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    public UserBadgeCertificateRecordDTO() { | 
				
			||||
 | 
					        this.auditStatus = "auditing"; | 
				
			||||
 | 
					        this.isLast = "yes"; | 
				
			||||
 | 
					        this.delFlag = "0"; | 
				
			||||
 | 
					        this.revision = 0; | 
				
			||||
 | 
					        this.createdBy = "APP_USER"; | 
				
			||||
 | 
					        this.updatedBy = "APP_USER"; | 
				
			||||
 | 
					    } | 
				
			||||
 | 
					} | 
				
			||||
@ -0,0 +1,22 @@ | 
				
			|||||
 | 
					package com.epmet.dto.form; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import lombok.Data; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import javax.validation.constraints.NotBlank; | 
				
			||||
 | 
					import java.io.Serializable; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					/** | 
				
			||||
 | 
					 * @Author zxc | 
				
			||||
 | 
					 * @DateTime 2020/11/4 3:11 下午 | 
				
			||||
 | 
					 */ | 
				
			||||
 | 
					@Data | 
				
			||||
 | 
					public class BadgeSendCodeFormDTO implements Serializable { | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    private static final long serialVersionUID = -3926070129364657241L; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    public interface BadgeSendCode{} | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    @NotBlank(message = "手机号不能为空", groups = {BadgeSendCode.class}) | 
				
			||||
 | 
					    private String mobile; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					} | 
				
			||||
@ -0,0 +1,67 @@ | 
				
			|||||
 | 
					package com.epmet.dto.form; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import lombok.Data; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import javax.validation.constraints.NotBlank; | 
				
			||||
 | 
					import java.io.Serializable; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					/** | 
				
			||||
 | 
					 * @Author zxc | 
				
			||||
 | 
					 * @DateTime 2020/11/4 11:05 上午 | 
				
			||||
 | 
					 */ | 
				
			||||
 | 
					@Data | 
				
			||||
 | 
					public class CertificationAddFormDTO implements Serializable { | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    private static final long serialVersionUID = 1330773325803513330L; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    public interface CertificationAdd{} | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    private String userId; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 客户ID | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    @NotBlank(message = "客户ID不能为空",groups = {CertificationAdd.class}) | 
				
			||||
 | 
					    private String customerId; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 徽章ID | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private String badgeId; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 手机号 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private String mobile; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 姓 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private String subName; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 名 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private String name; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 身份证号 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private String idCard; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 认证证件图片url | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private String certificate; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 认证说明 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private String remark; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 验证码 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private String code; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					} | 
				
			||||
					Loading…
					
					
				
		Reference in new issue