修改pc端修改简历信息(包括技能、经历)

This commit is contained in:
sh
2025-10-29 19:32:54 +08:00
parent 05c9cd8ccb
commit b5baec232a
2 changed files with 23 additions and 13 deletions

View File

@@ -137,7 +137,10 @@ public class CmsAppUserController extends BaseController
public AjaxResult editRegisterUser(@RequestBody RegisterBody registerBody)
{
if (registerBody == null) {
throw new IllegalArgumentException("入参registerBody不能为空");
return AjaxResult.error("入参registerBody不能为空!");
}
if(registerBody.getAppUser()==null){
return AjaxResult.error("用户信息为空!");
}
return AjaxResult.success(appUserService.editRegisterUser(registerBody));
}