heheng
2024-12-23 49034a174da199c56fa132973b99a6b06cd5b4a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.gkhy.assess.system.domain.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "验证码对象", description = "验证码对象")
public class CaptchaVO {
    @ApiModelProperty("唯一标识")
    private String uuid;
    @ApiModelProperty("验证码图片内容,base64")
    private String image;
}