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
package com.iplatform.base.captcha;
 
import com.walker.web.CaptchaResult;
 
/**
 * 拼图滑块的验证返回结果,因为非常特殊,所以需要定制。
 * @author 时克英
 * @date 2023-04-06
 */
public class JigsawResult extends CaptchaResult {
 
    public int getX() {
        return x;
    }
 
    public void setX(int x) {
        this.x = x;
    }
 
    public int getY() {
        return y;
    }
 
    public void setY(int y) {
        this.y = y;
    }
 
    public String getImageSourceBase64() {
        return imageSourceBase64;
    }
 
    public void setImageSourceBase64(String imageSourceBase64) {
        this.imageSourceBase64 = imageSourceBase64;
    }
 
    public String getImageBlockBase64() {
        return imageBlockBase64;
    }
 
    public void setImageBlockBase64(String imageBlockBase64) {
        this.imageBlockBase64 = imageBlockBase64;
    }
 
    private int x = 0;
    private int y = 0;
    private String imageSourceBase64;
    private String imageBlockBase64;
}