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;
|
}
|