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
39
40
41
42
43
44
45
46
47
48
49
package com.ishop.mobile.pojo;
 
import com.walker.web.param.ParamRequest;
 
public class SmsCodeParam extends ParamRequest {
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public String getUuid() {
        return uuid;
    }
 
    public void setUuid(String uuid) {
        this.uuid = uuid;
    }
 
    /**
     * 上一步拼图验证码的 x 位置,需要重新验证,防止短信接口攻击。
     * @return
     * @date 2023-06-28
     */
    public String getX() {
        return x;
    }
 
    public void setX(String x) {
        this.x = x;
    }
 
    private String uuid;
    private String x;
 
    private String phone;
 
    @Override
    public String toString() {
        return "SmsCodeParam{" +
                "uuid='" + uuid + '\'' +
                ", x='" + x + '\'' +
                ", phone='" + phone + '\'' +
                '}';
    }
}