|
@@ -155,8 +155,7 @@ public class UserProfileController extends BaseController {
|
|
|
@PreAuthorize("@ss.hasPermi('system:profile:edit')")
|
|
|
@Log(title = "填写资料审核", businessType = BusinessType.UPDATE)
|
|
|
@PostMapping("/test")
|
|
|
- public AjaxResult<Void> test(@RequestBody UserProfileAddBo bo) throws IOException {
|
|
|
- iUserProfileService.testWord(bo);
|
|
|
- return toAjax(0);
|
|
|
+ public AjaxResult test(@RequestBody UserProfileAddBo bo) throws IOException {
|
|
|
+ return AjaxResult.success(iUserProfileService.testWord(bo));
|
|
|
}
|
|
|
}
|