MrShi
2025-08-19 30e858fa504b268b9b436afca0a1259cf6e8c488
server/src/main/java/com/doumee/service/common/CaptchaService.java
@@ -127,17 +127,13 @@
    @Data
    @ApiModel("验证码对象")
    public static class Captcha {
        @ApiModelProperty(value = "验证码UUID")
        private String uuid;
        @JsonIgnore
        @ApiModelProperty(value = "验证码", hidden = true)
        private String text;
        @ApiModelProperty(value = "验证码Base64")
        private String image;
        Captcha (String text, BufferedImage image) {
            this.uuid = UUID.randomUUID().toString();
            this.text = text;