duhuizhe
2023-10-16 3aa55dd3f62cee2c1c4c0aa74e1570acf83f8927
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
26
package com.consum.base.pojo;
 
import com.walker.web.param.ParamRequest;
 
public class UpdatePwdParam extends ParamRequest {
 
    private String newPwd;
 
    private String newPwdCopy;
 
    public String getNewPwd() {
        return newPwd;
    }
 
    public void setNewPwd(String newPwd) {
        this.newPwd = newPwd;
    }
 
    public String getNewPwdCopy() {
        return newPwdCopy;
    }
 
    public void setNewPwdCopy(String newPwdCopy) {
        this.newPwdCopy = newPwdCopy;
    }
}