批量删除执法记录仪文件信息等修复

This commit is contained in:
guoshengxiong 2025-09-19 19:44:03 +08:00
parent 400f5ee2a6
commit e60344e802

View File

@ -126,7 +126,7 @@ public class PoliceCameraItemFileController {
@ApiOperation(value = "批量删除执法记录仪文件信息", notes = "批量删除执法记录仪文件信息", httpMethod = "POST")
@ApiImplicitParam(name = "ids", value = "执法记录仪文件管理ids多个,分隔)", paramType = "body", required = true, dataType = "String")
@PostMapping(value = "/deleteBatch")
public Result deleteBatch(@ApiIgnore @RequestBody Map<String, Object> map) {
public Result deleteBatch(@Parameter(hidden = true) @RequestBody Map<String, Object> map) {
Result result = new Result<>();
String ids = MapUtils.getString(map, "ids");
if (ids == null || "".equals(ids.trim())) {