ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
package jnpf.onlinedev.service;
 
import jnpf.base.service.SuperService;
import jnpf.onlinedev.entity.VisualPersonalEntity;
import jnpf.onlinedev.model.DataInfoVO;
import jnpf.onlinedev.model.personalList.VisualPersonalInfo;
import jnpf.onlinedev.model.personalList.VisualPersonalVo;
 
import java.util.List;
 
/**
 * 列表个性视图 服务
 *
 * @author JNPF开发平台组
 * @version v5.1.0
 * @copyright 引迈信息技术有限公司
 * @date 2024/11/5 16:50:00
 */
public interface VisualPersonalService extends SuperService<VisualPersonalEntity> {
 
    /**
     * 查询个性视图列表
     *
     * @param menuId
     * @return
     */
    List<VisualPersonalEntity> getList(String menuId);
 
    /**
     * 查询个性视图列表
     *
     * @param menuId
     * @return
     */
    List<VisualPersonalVo> getListVo(String menuId);
 
 
    /**
     * 查询个性视图详情
     *
     * @param id
     * @return
     */
    VisualPersonalInfo getInfo(String id);
 
    /**
     * 重名检测 同菜单下不能同名
     *
     * @param fullName
     * @param id
     * @param menuId
     * @return
     */
    boolean isExistByFullName(String fullName, String id, String menuId);
 
    /**
     * 页面初始化获取个性化配置
     *
     * @param menuId
     * @return
     */
    void setDataInfoVO(String menuId, DataInfoVO dataInfoVO);
}