wlzboy
2025-09-21 7d81ce01560d384f15212edc40ebeaa9924913f9
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));
    }
}