1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.ruoyi.company.api.model;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| @Data
| @Schema(name = "修改手机号参数")
| public class UpdatePhone {
|
| @Schema(description = "旧手机号", example = "13800138000")
| private String oldPhone;
|
| @Schema(description = "新手机号", example = "13800138000")
| private String newPhone;
|
| @Schema(description = "验证码", example = "123456")
| private String code;
|
| @Schema(description = "登录密码", example = "123456")
| private String password;
| }
|
|