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