From cba4bc64b4c9de37abaf6a013036fc162e7e2d8d Mon Sep 17 00:00:00 2001
From: 6c <420680616@qq.com>
Date: 星期一, 16 六月 2025 14:45:10 +0800
Subject: [PATCH] 移动端 人员选择字段未选,默认为0 bug解决(本身是false,但是数据库保存为0)
---
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