1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.stylefeng.guns.modular.system.model.dto;
|
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| @Data
| public class UpdatePwdDto {
| @ApiModelProperty("用户id")
| private Integer id;
| @ApiModelProperty("验证码")
| private String code;
| @ApiModelProperty("m密码")
| private String pwd;
| @ApiModelProperty("新邮箱")
| private String email;
| @ApiModelProperty("新邮箱验证码")
| private String codeOne;
|
| }
|
|