From f367ca7772c3cad36a6f2aed5c4b278451fb4e7b Mon Sep 17 00:00:00 2001
From: cheng <1821349743@qq.com>
Date: 星期六, 13 五月 2023 17:03:04 +0800
Subject: [PATCH] 表单建模列表左侧树接口、删除接口

---
 src/main/java/com/product/face/service/ide/IFaceDesignService.java |   41 +++++++++++++++++++++++++----------------
 1 files changed, 25 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..33b3a26 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,29 @@
  * @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;
+
 }

--
Gitblit v1.9.2