shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
27
28
29
30
31
32
33
34
35
36
37
38
package com.ishop.model.request;
 
import java.io.Serializable;
 
/**
 * 设置支付密码
 * @date 2023-08-09
 */
public class PayPassRequest implements Serializable {
 
    public String getEncryptPassword() {
        return encryptPassword;
    }
 
    public void setEncryptPassword(String encryptPassword) {
        this.encryptPassword = encryptPassword;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getUuid() {
        return uuid;
    }
 
    public void setUuid(String uuid) {
        this.uuid = uuid;
    }
 
    private String encryptPassword;
    private String code;    // 短信验证码
    private String uuid;    // 请求标识,验证码使用
}