cheng
2023-05-13 f367ca7772c3cad36a6f2aed5c4b278451fb4e7b
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;
}