15 changed files with 152 additions and 58 deletions
@ -0,0 +1,35 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 描述一下 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2020/7/2 14:28 |
|||
*/ |
|||
@Data |
|||
public class ResiWxPhoneFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 4381236451736209332L; |
|||
public interface AddUserInternalGroup {} |
|||
/** |
|||
* 微信code |
|||
*/ |
|||
@NotBlank(message = "wxCode不能为空",groups = {AddUserInternalGroup.class}) |
|||
private String wxCode; |
|||
|
|||
/** |
|||
* 用户信息 |
|||
*/ |
|||
@NotBlank(message = "encryptedData不能为空",groups = {AddUserInternalGroup.class}) |
|||
private String encryptedData; |
|||
|
|||
/** |
|||
* 加密算法的初始向量 |
|||
*/ |
|||
@NotBlank(message = "iv不能为空",groups = {AddUserInternalGroup.class}) |
|||
private String iv; |
|||
} |
Loading…
Reference in new issue