| | |
| | | package com.xcong.excoin.modules.member.parameter.dto;
|
| | |
|
| | | import javax.validation.constraints.NotBlank;
|
| | | import javax.validation.constraints.NotNull;
|
| | |
|
| | | import io.swagger.annotations.ApiModel;
|
| | |
| | | @ApiModel(value = "MemberBindEmailDto", description = "绑定邮箱参数接收类")
|
| | | public class MemberBindEmailDto {
|
| | |
|
| | | @NotNull(message = "验证码不能为空")
|
| | | @NotBlank(message = "验证码不能为空")
|
| | | @ApiModelProperty(value = "验证码", example = "123456")
|
| | | private String code;
|
| | |
|
| | | @NotNull(message = "手机验证码验证码不能为空")
|
| | | @NotBlank(message = "手机验证码验证码不能为空")
|
| | | @ApiModelProperty(value = "手机验证码验证码", example = "123456")
|
| | | private String otherCode;
|
| | |
|
| | | @NotNull(message = "邮箱不能为空")
|
| | | @NotBlank(message = "邮箱不能为空")
|
| | | @ApiModelProperty(value = "邮箱", example = "www.13412341234@134.com")
|
| | | private String email;
|
| | |
|