shichongfu
2023-04-25 ce0b49552668d3331055e2b1a1447a743dc54939
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package com.product.admin.service.idel;
 
import com.alibaba.fastjson.JSONArray;
import com.product.admin.entity.FaceListEntity;
import com.product.core.entity.DataTableEntity;
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
import java.util.List;
import java.util.Map;
 
public interface ISystemFaceService {
    /**
     * 获取模块功能树
     * @return
     * @throws BaseException
     */
    DataTableEntity getModuleFunctionTree()throws  BaseException;
 
    /**
     * 表单列表
     *
     * @return
     * @throws BaseException
     */
    DataTableEntity getFaceList(FieldSetEntity fse) throws BaseException;
 
    /**
     * 获取表单详情根据uuid
     *
     * @param fse
     * @return
     * @throws BaseException
     */
    FieldSetEntity getFaceInfoByUuid(FieldSetEntity fse) throws BaseException;
 
    /**
     * 保存表单详情根据uuid
     *
     * @param fse
     * @return
     * @throws BaseException
     */
    String saveFaceInfo(FieldSetEntity fse) throws BaseException;
 
    /**
     * 删除表单详情根据uuid
     *
     * @param uuids
     * @return
     * @throws BaseException
     */
    boolean deleteFaceInfoByUuids(String[] uuids) throws BaseException;
 
    /**
     * 获取表单列表字段
     * @param function_uuid
     * @return
     * @throws BaseException
     */
    FaceListEntity getFaceFieldList(String function_uuid)throws BaseException;
 
 
    String getListFilter(Map<String, List<String>> tableAlias,Map<String, List<String>> aliasField, String face_uuid, String val) throws BaseException;
 
 
}