1. 验证码的单元测试

2. 修复 h2 脚本的问题
This commit is contained in:
YunaiV
2021-03-13 19:34:26 +08:00
parent cee1aa3e60
commit 8af60fdaa6
13 changed files with 119 additions and 57 deletions

View File

@ -21,8 +21,8 @@ public class SysCaptchaController {
@Resource
private SysCaptchaService captchaService;
@ApiOperation("生成图片验证码")
@GetMapping("/get-image")
@ApiOperation("生成图片验证码")
public CommonResult<SysCaptchaImageRespVO> getCaptchaImage() {
return success(captchaService.getCaptchaImage());
}