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;
/**
* 原始记录PDF下载
* @param taskId
* @return
* @throws Exception
*/
String generateOriginalRecord(Long taskId) throws Exception;
}
-
盖献康 authored2d015e58