ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TbCallbackLogController.java
@@ -101,4 +101,15 @@ { return toAjax(tbCallbackLogService.deleteTbCallbackLogByIds(ids)); } /** * 重试回调 */ @PreAuthorize("@ss.hasPermi('system:callbacklog:retry')") @Log(title = "回调记录", businessType = BusinessType.UPDATE) @PostMapping("/retry/{ids}") public AjaxResult retry(@PathVariable Long[] ids) { return toAjax(tbCallbackLogService.retryTbCallbackLogByIds(ids)); } }