package com.ruoyi.service; import javax.servlet.http.HttpServletResponse; /** * PDF模板管理Service接口 * @author gxk */ public interface PdfTemplateManagementService { /** * 检验报告PDF下载 * @param response * @throws Exception */ void generateInspectionReport(HttpServletResponse response) throws Exception; /** * 企业留档文件PDF下载 * @param taskId * @return * @throws Exception */ String generateRetentionFile(Long taskId) throws Exception; }