lyh
2026-01-19 679fd75eea25c52b9280465250c064721ecc7009
1
2
3
4
5
6
7
8
9
10
package com.lxzn.framework.domain.ucenter.request;
 
import lombok.Data;
 
@Data
public class UserPasswordRequest {
    private String userId;
    private String oldPassword;
    private String newPassword;
}