zwl
2025-07-22 8b441ef9a219966fabf4b3c509849a37ec816192
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.zy.asrs.wcs.system.controller.param;
 
import lombok.Data;
 
/**
 * Created by vincent on 2/28/2024
 */
@Data
public class ResetPwdParam {
 
    private Long id;
 
    private String oldPwd;
 
    private String password;
 
}