wzp
2025-05-06 5d5a187689e51a8a74f16b91d23d32a74b39e803
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));
    }
}