11 changed files with 109 additions and 5 deletions
@ -0,0 +1,25 @@ |
|||
package com.elink.esua.epdc.dto.epdc.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Auther: yinzuomei |
|||
* @Date: 2019/11/18 16:37 |
|||
* @Description: 业务端 认证用户(用户信息审核)入参DTO |
|||
*/ |
|||
@Data |
|||
public class EpdcAppAuthenticateResidentFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 6035055052382466281L; |
|||
/** |
|||
* 是否认证通过 0否 1是 |
|||
*/ |
|||
private String authenticatedFlag; |
|||
/** |
|||
* 用户ID |
|||
*/ |
|||
@NotBlank(message = "用户ID不能为空") |
|||
private String userId; |
|||
} |
Loading…
Reference in new issue