package com.gkhy.safePlatform.specialWork.service; import com.gkhy.safePlatform.specialWork.entity.WorkApplyInfo; import com.gkhy.safePlatform.specialWork.entity.WorkInfo; import com.itextpdf.text.DocumentException; import org.apache.poi.xwpf.usermodel.XWPFDocument; import javax.servlet.http.HttpServletResponse; import java.io.IOException; public interface WorkPrintService { //void workPrint(HttpServletResponse response,WorkApplyInfo workApplyInfo); void workPrintPdf(HttpServletResponse response, WorkApplyInfo workApplyInfo, WorkInfo workInfo) throws DocumentException, IOException; }