From 625c4f2816d171bbe8cf264e23d3bec0c11e3b86 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期五, 03 四月 2026 17:25:13 +0800
Subject: [PATCH] 采集器调整:mdb数据库处理,排除特殊字段类型

---
 src/main/java/com/chinaztt/mes/docx/service/DocxService.java |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/chinaztt/mes/docx/service/DocxService.java b/src/main/java/com/chinaztt/mes/docx/service/DocxService.java
index 48a0814..7b6d49d 100644
--- a/src/main/java/com/chinaztt/mes/docx/service/DocxService.java
+++ b/src/main/java/com/chinaztt/mes/docx/service/DocxService.java
@@ -1,14 +1,17 @@
 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();
+
 }

--
Gitblit v1.9.3