1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.ruoyi.system.object.dto;
|
| import io.swagger.annotations.Api;
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| @Data
| @ApiModel("重置密码DTO")
| public class SetPasswordDTO {
| @ApiModelProperty("旧密码")
| private String pwd;
| @ApiModelProperty("新密码")
| private String newPwd;
| }
|
|