ny
23 小时以前 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
64
65
66
67
68
69
70
71
72
73
74
75
76
package jnpf.portal.service;
 
import jnpf.base.model.VisualFunctionModel;
import jnpf.base.model.base.SystemListVO;
import jnpf.base.service.SuperService;
import jnpf.portal.entity.PortalEntity;
import jnpf.portal.model.PortalPagination;
import jnpf.portal.model.PortalSelectModel;
 
import java.util.List;
 
 
/**
 * base_portal
 * 版本: V3.0.0
 * 版权: 引迈信息技术有限公司
 * 作者: 管理员/admin
 * 日期: 2020-10-21 14:23:30
 */
 
public interface PortalService extends SuperService<PortalEntity> {
 
    PortalEntity getInfo(String id);
 
    /**
     * 是否重名(应用内判重)
     */
    Boolean isExistByFullName(String fullName, String id, String systemId);
 
    /**
     * 是否重码
     */
    Boolean isExistByEnCode(String encode, String id);
 
    /**
     * 设置自动生成编码
     *
     * @param entity
     */
    void setAutoEnCode(PortalEntity entity);
 
    void create(PortalEntity entity);
 
    Boolean update(String id, PortalEntity entity);
 
    void delete(PortalEntity entity) throws Exception;
 
    List<PortalEntity> getList(PortalPagination pagination);
 
    List<PortalSelectModel> getModSelectList();
 
    /**
     * 获取门户模型集合
     *
     * @param pagination 分页信息
     * @return 模型集合
     */
    List<VisualFunctionModel> getModelList(PortalPagination pagination);
 
 
    /**
     * 获取可选系统列表
     *
     * @param id
     * @return
     */
    List<SystemListVO> systemFilterList(String id, String category);
 
    /**
     * 获取发布信息
     *
     * @param id
     * @return
     */
    VisualFunctionModel getReleaseInfo(String id);
}