zouyu
2026-04-03 625c4f2816d171bbe8cf264e23d3bec0c11e3b86
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.chinaztt.mes.docx.service;
 
import com.chinaztt.mes.docx.dto.GetFileDto;
import com.chinaztt.mes.docx.util.Result;
import net.sourceforge.tess4j.TesseractException;
 
import java.io.IOException;
import java.sql.SQLException;
 
public interface DocxService {
    Result<?> getFile(GetFileDto getFileDto) throws IOException, SQLException, ClassNotFoundException, InstantiationException, IllegalAccessException, TesseractException;
 
    Result<?> moveFile(String startFilePath, String endFilePath, String fileType);
 
    void readXml();
 
}