fei
2025-10-14 9e1a75cb81c360ab1d2046fd98bd73b643d2b503
ruoyi-admin/src/main/java/com/ruoyi/web/controller/archive/DoublePdfGenerateController.java
@@ -11,6 +11,8 @@
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.io.IOException;
import static com.ruoyi.common.core.page.TableSupport.PAGE_NUM;
import static com.ruoyi.common.core.page.TableSupport.PAGE_SIZE;
@Anonymous
@@ -22,9 +24,9 @@
    private IArchiveDoublePdfGenerateService iArchiveDoublePdfGenerateService;
    @GetMapping("/testConn")
    public AjaxResult testCon()
    {
        iArchiveDoublePdfGenerateService.testConnection();
    public AjaxResult testCon() throws IOException {
        iArchiveDoublePdfGenerateService
                .testConnection();
        return AjaxResult.success("2134");
    }
}