This commit is contained in:
cjw 2024-06-27 14:54:07 +08:00
parent dc3ad5a99c
commit abfc92405c
1 changed files with 1 additions and 1 deletions

View File

@ -120,6 +120,6 @@ public class SysOssPersonController extends BaseController {
@SaCheckPermission("file:person:preview")
@PostMapping("/preview/{id}")
public R<String> preview(@NotNull(message = "主键不能为空") @PathVariable Long id) throws Exception {
return R.ok(sysOssPersonService.preview(id));
return R.ok("操作成功",sysOssPersonService.preview(id));
}
}