linwei
2024-02-05 843fc104555c327ac5d15d26fff2de0a8810c078
src/main/java/org/springblade/modules/taskPlaceSelfCheck/controller/TaskPlaceSelfCheckController.java
@@ -148,11 +148,11 @@
   /**
    * 消防自查记任务表 修改
    */
   @PostMapping("/examine")
   @PostMapping("/updateTaskPlaceSelfCheck")
   @ApiOperationSupport(order = 5)
   @ApiOperation(value = "审核接口", notes = "传入taskPlaceSelfCheck")
   public R examine(@Valid @RequestBody TaskPlaceSelfCheckVO taskPlaceSelfCheck) throws Exception {
      return R.status(taskPlaceSelfCheckService.examine(taskPlaceSelfCheck));
   @ApiOperation(value = "更新自查详情接口", notes = "传入taskPlaceSelfCheck")
   public R updateTaskPlaceSelfCheck(@Valid @RequestBody TaskPlaceSelfCheckVO taskPlaceSelfCheck) throws Exception {
      return R.status(taskPlaceSelfCheckService.updateTaskPlaceSelfCheck(taskPlaceSelfCheck));
   }