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
| package cn.stylefeng.roses.kernel.security.api.pojo;
|
| import cn.stylefeng.roses.kernel.rule.annotation.ChineseDescription;
| import lombok.Builder;
| import lombok.Data;
|
| /**
| * EasyCaptcha 图形验证码参数
| *
| * @author fengshuonan
| * @date 2020/8/17 21:43
| */
| @Data
| @Builder
| public class ImageCaptcha {
|
| /**
| * 缓存Key
| */
| @ChineseDescription("缓存Key")
| private String verKey;
|
| /**
| * Base64 图形验证码
| */
| @ChineseDescription("Base64 图形验证码")
| private String verImage;
|
| }
|
|