#
luxiaotao1123
2024-02-18 308082bedaed42935bd67845e3840eb71ff96240
zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/system/controller/UserController.java
@@ -49,7 +49,7 @@
    }
    @PreAuthorize("hasAuthority('system:user:save')")
    @OperationLog("添加User")
    @OperationLog("添加用户")
    @PostMapping("/user/save")
    public R save(@RequestBody User user) {
        if (!userService.save(user)) {
@@ -59,7 +59,7 @@
    }
    @PreAuthorize("hasAuthority('system:user:update')")
    @OperationLog("修改User")
    @OperationLog("修改用户")
    @PostMapping("/user/update")
    public R update(@RequestBody User user) {
        if (!userService.updateById(user)) {
@@ -69,7 +69,7 @@
    }
    @PreAuthorize("hasAuthority('system:user:remove')")
    @OperationLog("删除User")
    @OperationLog("删除用户")
    @PostMapping("/user/remove/{ids}")
    public R remove(@PathVariable Long[] ids) {
        if (!userService.removeByIds(Arrays.asList(ids))) {