【更新】更新一个C端控制器的枚举类型参数

pull/56/head
小诺 2022-11-07 03:04:04 +08:00 committed by 俞宝山
parent f5cad22740
commit 56337192ae
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ public class AuthClientController {
@ApiOperation("C端获取图片验证码")
@GetMapping("/auth/c/getPicCaptcha")
public CommonResult<AuthPicValidCodeResult> getPicCaptcha() {
return CommonResult.data(authService.getPicCaptcha(SaClientTypeEnum.B.getValue()));
return CommonResult.data(authService.getPicCaptcha(SaClientTypeEnum.C.getValue()));
}
/**