yaowanxin
2025-07-19 2d1e909070e2baaa49d3a021364df595ff1d2e72
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.chinaztt.mes.docx.service;
 
import com.chinaztt.mes.docx.dto.GetFileDto;
import com.chinaztt.mes.docx.util.R;
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;
 
    R<?> moveFile(String startFilePath, String endFilePath, String fileType);
 
 
}