fix: 修改验证码uuid参数默认是string

This commit is contained in:
weihongyang 2022-06-23 15:31:55 +08:00
bovenliggende d3322639de
commit aab0ea4479

Bestand weergeven

@ -41,7 +41,7 @@ public class LoginController {
@GetMapping("/captcha")
@ApiOperation(value = "验证码", produces="application/octet-stream")
@ApiImplicitParam(paramType = "query", dataTypeClass=String.class, name = "uuid", required = true)
@ApiImplicitParam(paramType = "query", dataTypeClass=String.class, name = "uuid", required = true,example = "string")
public void captcha(HttpServletResponse response, String uuid)throws IOException {
//uuid不能为空
AssertUtils.isBlank(uuid, ErrorCode.IDENTIFIER_NOT_NULL);
@ -61,5 +61,4 @@ public class LoginController {
public void logout(){
}
}