| | |
| | | package com.chinaztt.mes.docx.service; |
| | | |
| | | import com.chinaztt.mes.docx.dto.GetFileDto; |
| | | import com.chinaztt.mes.docx.util.R; |
| | | import com.chinaztt.mes.docx.util.Result; |
| | | import net.sourceforge.tess4j.TesseractException; |
| | | |
| | | import java.io.IOException; |
| | | import java.sql.SQLException; |
| | | |
| | | public interface DocxService { |
| | | R<?> getFile(GetFileDto getFileDto) throws IOException, SQLException, ClassNotFoundException, InstantiationException, IllegalAccessException, TesseractException; |
| | | Result<?> getFile(GetFileDto getFileDto) throws IOException, SQLException, ClassNotFoundException, InstantiationException, IllegalAccessException, TesseractException; |
| | | |
| | | R<?> moveFile(String startFilePath, String endFilePath, String fileType); |
| | | Result<?> moveFile(String startFilePath, String endFilePath, String fileType); |
| | | |
| | | void readXml(); |
| | | |
| | | } |