From ac070bd08ba4cb6c1e3bf670db75b6a8e801b84b Mon Sep 17 00:00:00 2001
From: 杜洪波 <1074825718@qq.com>
Date: 星期一, 17 十一月 2025 18:00:30 +0800
Subject: [PATCH] 表单建模树优化
---
src/main/java/com/product/face/service/ide/IFaceDesignService.java | 53 +++++++++++++++++++++++++++++++++++++----------------
1 files changed, 37 insertions(+), 16 deletions(-)
diff --git a/src/main/java/com/product/face/service/ide/IFaceDesignService.java b/src/main/java/com/product/face/service/ide/IFaceDesignService.java
index 35faae0..ee1e7e2 100644
--- a/src/main/java/com/product/face/service/ide/IFaceDesignService.java
+++ b/src/main/java/com/product/face/service/ide/IFaceDesignService.java
@@ -1,6 +1,7 @@
package com.product.face.service.ide;
import com.alibaba.fastjson.JSONObject;
+import com.product.core.entity.DataTableEntity;
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
@@ -12,21 +13,41 @@
* @Desc 琛ㄥ崟璁捐鎺ュ彛
*/
public interface IFaceDesignService {
- /**
- * 鑾峰彇琛ㄥ崟閰嶇疆璇︽儏
- *
- * @param uuid
- * @return
- * @throws BaseException
- */
- String getFaceConfigInfo(String uuid) throws BaseException;
+ /**
+ * 鑾峰彇琛ㄥ崟閰嶇疆璇︽儏
+ *
+ * @param uuid
+ * @return
+ * @throws BaseException
+ */
+ String getFaceConfigInfo(String uuid) throws BaseException;
- /**
- * 淇濆瓨琛ㄥ崟鍐呭鏁版嵁
- *
- * @param fse
- * @return
- * @throws BaseException
- */
- FieldSetEntity saveFaceData(FieldSetEntity fse) throws BaseException;
+ /**
+ * 淇濆瓨琛ㄥ崟鍐呭鏁版嵁
+ *
+ * @param fse
+ * @return
+ * @throws BaseException
+ */
+ FieldSetEntity saveFaceData(FieldSetEntity fse) throws BaseException;
+
+ /**
+ * 鍒犻櫎琛ㄥ崟璁捐
+ * @param fse
+ * @throws BaseException
+ */
+ void deleteFace(FieldSetEntity fse) throws BaseException;
+
+ /**
+ * 鑾峰彇鎵�鏈夎璁¢〉闈�
+ * @return
+ * @throws BaseException
+ */
+ DataTableEntity listAllDesignFace() throws BaseException;
+ /**
+ * 鑾峰彇鎵�鏈夎璁¢〉闈�
+ * @return
+ * @throws BaseException
+ */
+ DataTableEntity listAllTable() throws BaseException;
}
--
Gitblit v1.9.2