1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package com.stylefeng.guns.modular.system.util.qianyuntong.model;
|
| import lombok.Data; /**
| * @author zhibing.pu
| * @Date 2025/6/10 10:42
| */
| @Data
| public class ModifyPwdRequest {
| /**
| * 手机号码
| */
| private String mobile;
| /**
| * 旧密码
| */
| private String oldPwd;
| /**
| * 新密码
| */
| private String newPwd;
| /**
| * 验证码
| */
| private String code;
| }
|
|