许鹏程
6 天以前 929e9fedb97a88ef122100e03f775fedae79c474
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
package com.product.mobile.core.service.ide;
 
import com.product.core.entity.DataTableEntity;
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
import java.util.List;
 
/**
 * @Author cheng
 * @Date 2022/2/22 17:56
 * @Desc 导航栏管理接口
 */
public interface INavBarManagerService {
    /**
     * 配置列表
     *
     * @param fse
     * @return
     * @throws BaseException
     */
    DataTableEntity listConfig(FieldSetEntity fse) throws BaseException;
 
    /**
     * 配置详情
     *
     * @param fse
     * @return
     * @throws BaseException
     */
    FieldSetEntity findConfig(FieldSetEntity fse) throws BaseException;
 
    /**
     * 保存配置
     *
     * @param fse
     * @return
     * @throws BaseException
     */
    void saveConfig(FieldSetEntity fse) throws BaseException;
 
    /**
     * 删除配置
     *
     * @param fse
     * @throws BaseException
     */
    void delConfig(FieldSetEntity fse) throws BaseException;
 
    /**
     * 移动端获取导航栏(展示跳转)
     *
     * @return
     * @throws BaseException
     */
    List<Object> getNarBarTree() throws BaseException;
    /**
     * 设备管理
     * 移动端获取导航栏(展示跳转)
     *
     * @return
     * @throws BaseException
     */
    List<Object> getDeviceNarBarTree() throws BaseException;
 
}