1821349743@qq.com
2023-04-24 1a83fae321f3f109f077f92ad2931c76df6fe9de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.product.face.service.ide;
 
import com.alibaba.fastjson.JSONObject;
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
import java.util.List;
 
/**
 * @Author cheng
 * @Date 2023/4/21 17:47
 * @Desc 表单设计接口
 */
public interface IFaceDesignService {
    /**
     * 获取表单配置详情
     *
     * @param uuid
     * @return
     * @throws BaseException
     */
    String getFaceConfigInfo(String uuid) throws BaseException;
 
    /**
     * 保存表单内容数据
     *
     * @param fse
     * @return
     * @throws BaseException
     */
    FieldSetEntity saveFaceData(FieldSetEntity fse) throws BaseException;
}