修改仓储批量更新和批量删除方法

This commit is contained in:
2022-04-19 09:01:59 +08:00
parent 7c1fdde2f3
commit eda7ac40bf
53 changed files with 316 additions and 254 deletions
@@ -93,7 +93,7 @@ namespace IRaCIS.Application.Services
return ResponseOutput.NotOk("不允许直接删除父节点");
}
var success =await menuRepository.DeleteFromQueryAsync(u => u.Id == menuId);
var success =await menuRepository.BatchDeleteAsync(u => u.Id == menuId);
return ResponseOutput.Result(success);
}