无关风月
2024-07-30 87e07ac8b8f1868eb4302fac73dfc93c5417f977
ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/controller/SlStoreManagementController.java
@@ -48,7 +48,9 @@
    @DeleteMapping("/{id}")
    public R<?> delStoreManagement(
            @ApiParam(name = "id", value = "仓库管理id", required = true) @PathVariable("id") Long id) {
        slStoreManagementService.removeById(id);
        SlStoreManagement byId = slStoreManagementService.getById(id);
        byId.setDelFlag("1");
        slStoreManagementService.updateById(byId);
        return R.ok();
    }