zhongrj
2024-03-22 8a881a2c54673d4223425f17bc5cae8eef4e5649
src/main/java/org/springblade/modules/backblast/controller/BackblastPubRecordController.java
@@ -132,5 +132,16 @@
      return R.status(backblastPubRecordService.removeByIds(Func.toLongList(ids)));
   }
   /**
    * 反炸宣传记录表 自定义详情
    * @param backblastPubRecord
    * @return
    */
   @GetMapping("/getDetail")
   @ApiOperationSupport(order = 9)
   @ApiOperation(value = "详情", notes = "传入backblastPubRecord")
   public R getDetail(BackblastPubRecordVO backblastPubRecord) {
      BackblastPubRecordVO detail = backblastPubRecordService.getDetail(backblastPubRecord);
      return R.data(detail);
   }
}