认证-参数项收集-批量删除修改

This commit is contained in:
liyawei
2022-08-04 15:13:10 +08:00
parent 85fb63bb62
commit ffb31b7e4f
@@ -179,7 +179,7 @@ public class ParamsCollectManifestEOController extends JeroController<ParamsColl
@ApiOperation(value="参数项收集清单-批量删除", notes="参数项收集清单-批量删除")
@PostMapping(value = "/deleteBatch")
// @RequiresPermissions("params:collectManifest:delete")
public Result<?> deleteBatch(ParamsCollectManifestVO paramsCollectManifestVO) {
public Result<?> deleteBatch(@RequestBody ParamsCollectManifestVO paramsCollectManifestVO) {
boolean isSuccess = paramsCollectManifestEOService.deleteBatch(paramsCollectManifestVO);
if (isSuccess) {
return Result.OK("批量删除成功!");