From 4cb586238c078799d91e4f22a662aa00fea24eef Mon Sep 17 00:00:00 2001
From: 6c <420680616@qq.com>
Date: 星期五, 17 十月 2025 17:27:45 +0800
Subject: [PATCH] 适配存储到数据库的文件; 不需要存储到数据库的,若是集群,那么同步到集群的其他节点; 若是失败,定时任务重试,至多3次

---
 src/main/java/com/product/file/service/ide/IDocumentService.java |   16 ++++++++++++----
 1 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/src/main/java/com/product/file/service/ide/IDocumentService.java b/src/main/java/com/product/file/service/ide/IDocumentService.java
index 58709f1..87a2577 100644
--- a/src/main/java/com/product/file/service/ide/IDocumentService.java
+++ b/src/main/java/com/product/file/service/ide/IDocumentService.java
@@ -4,7 +4,6 @@
 import com.product.core.entity.DataTableEntity;
 import com.product.core.entity.FieldSetEntity;
 import com.product.core.exception.BaseException;
-import org.jsoup.Connection;
 
 /**
  * Copyright LX-BASE
@@ -122,7 +121,7 @@
    * @return
    * @throws BaseException
    */
-  DataTableEntity getApplyDocument() throws BaseException;
+  DataTableEntity getApplyDocument(FieldSetEntity fse) throws BaseException;
 
   /**
    * 鏇存柊娣诲姞鍊熼槄鐢宠
@@ -136,12 +135,21 @@
    * @throws BaseException
    */
 
-  DataTableEntity getApplayFileSort() throws BaseException;
+  DataTableEntity getApplyFileSort() throws BaseException;
 
   /**
    * 鑾峰彇鍊熼槄浜烘帓鍚�
    * @return
    * @throws BaseException
    */
-  DataTableEntity getApplayUserSort() throws BaseException;
+  DataTableEntity getApplyUserSort() throws BaseException;
+
+  /**
+   * 鑾峰彇鍊熼槄璇︽儏淇℃伅
+   * @param fes
+   * @return
+   * @throws BaseException
+   */
+  FieldSetEntity getApplyInfo(FieldSetEntity fes) throws  BaseException;
+
 }

--
Gitblit v1.9.2