zhongrj
2024-02-05 e13f2a82be5ebad924dfc92eb03f0448697624c4
src/main/java/org/springblade/modules/taskPlaceSelfCheck/controller/TaskPlaceSelfCheckController.java
@@ -145,5 +145,15 @@
      return R.status(taskPlaceSelfCheckService.removeBatchByIds(Func.toLongList(ids)));
   }
   /**
    * 消防自查记任务表 修改
    */
   @PostMapping("/updateTaskPlaceSelfCheck")
   @ApiOperationSupport(order = 5)
   @ApiOperation(value = "更新自查详情接口", notes = "传入taskPlaceSelfCheck")
   public R updateTaskPlaceSelfCheck(@Valid @RequestBody TaskPlaceSelfCheckVO taskPlaceSelfCheck) throws Exception {
      return R.status(taskPlaceSelfCheckService.updateTaskPlaceSelfCheck(taskPlaceSelfCheck));
   }
}