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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package com.iplatform.base.pojo;
 
import com.walker.web.param.ParamRequest;
 
/**
 * 验证码请求条件。
 * @author 时克英
 * @date 2023-06-27
 */
public class CaptchaParam extends ParamRequest {
 
    public String getCaptchaType() {
        return captchaType;
    }
 
    public void setCaptchaType(String captchaType) {
        this.captchaType = captchaType;
    }
 
    public String getToken() {
        return token;
    }
 
    public void setToken(String token) {
        this.token = token;
    }
 
    public String getClientUid() {
        return clientUid;
    }
 
    public void setClientUid(String clientUid) {
        this.clientUid = clientUid;
    }
 
    public Long getTs() {
        return ts;
    }
 
    public void setTs(Long ts) {
        this.ts = ts;
    }
 
    /**
     * 返回拼图滑块的x位置。
     * @return
     * @date 2023-06-27
     */
    public String getX() {
        return x;
    }
 
    public void setX(String x) {
        this.x = x;
    }
 
    private String x;
 
    /**
     * 验证码类型:(clickWord,blockPuzzle)
     */
    private String captchaType;
 
    /**
     * UUID(每次请求的验证码唯一标识)
     */
    private String token;
 
    /***
     * 客户端UI组件id,组件初始化时设置一次,UUID
     */
    private String clientUid;
    /***
     * 客户端的请求时间,预留字段
     */
    private Long ts;
 
    @Override
    public String toString() {
        return "CaptchaParam{" +
                "x='" + x + '\'' +
                ", captchaType='" + captchaType + '\'' +
                ", token='" + token + '\'' +
                ", clientUid='" + clientUid + '\'' +
                ", ts=" + ts +
                '}';
    }
}