11 changed files with 309 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @author zhaoqifeng |
|||
* @dscription |
|||
* @date 2020/11/11 8:56 |
|||
*/ |
|||
@Data |
|||
public class EditMobileFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -6414713675159933915L; |
|||
@NotBlank(message = "手机号不能为空") |
|||
private String mobile; |
|||
@NotBlank(message = "验证码不能为空") |
|||
private String code; |
|||
private String userId; |
|||
} |
@ -0,0 +1,22 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @author zhaoqifeng |
|||
* @dscription |
|||
* @date 2020/11/10 10:44 |
|||
*/ |
|||
@Data |
|||
public class SendCodeFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -2098912419326588536L; |
|||
@NotBlank(message = "客户ID不能为空") |
|||
private String customerId; |
|||
@NotBlank(message = "手机号不能为空") |
|||
private String mobile; |
|||
private String userId; |
|||
|
|||
} |
Loading…
Reference in new issue