From 689f0a5155e6f93cf7ebda72570d464f46fc25f9 Mon Sep 17 00:00:00 2001 From: weiweiw <14335254+weiweiw22@user.noreply.gitee.com> Date: Fri, 27 Sep 2024 18:00:05 +0800 Subject: [PATCH] delete unused file --- .../bonus/system/controller/SysUserController.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bonus-modules/bonus-system/src/main/java/com/bonus/system/controller/SysUserController.java b/bonus-modules/bonus-system/src/main/java/com/bonus/system/controller/SysUserController.java index 2309e9f..b19493a 100644 --- a/bonus-modules/bonus-system/src/main/java/com/bonus/system/controller/SysUserController.java +++ b/bonus-modules/bonus-system/src/main/java/com/bonus/system/controller/SysUserController.java @@ -65,15 +65,15 @@ public class SysUserController extends BaseController { @Resource private PasswordValidatorService passwordValidatorService; - @Resource - private RemoteFileService remoteFileService; +// @Resource +// private RemoteFileService remoteFileService; +// @PostMapping("upload") +// public AjaxResult upload(MultipartFile file){ +// return remoteFileService.upload(file); +// } /** * 获取用户列表 */ - @PostMapping("upload") - public AjaxResult upload(MultipartFile file){ - return remoteFileService.upload(file); - } @RequiresPermissionsOrInnerAuth(innerAuth = @InnerAuth, requiresPermissions = @RequiresPermissions("system:user:list")) @GetMapping("/list") @SysLog(title = "用户管理", businessType = OperaType.QUERY, logType = 0, module = "系统管理->用户管理", details = "查询用户列表")