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
| package jnpf.base.service;
|
| import jnpf.base.entity.SystemTopEntity;
|
| import java.util.List;
|
| /**
| * 应用置顶Service
| *
| * @author JNPF开发平台组
| * @version v6.1.0
| * @copyright 引迈信息技术有限公司
| * @date 2025-09-05
| */
| public interface SystemTopService extends SuperService<SystemTopEntity> {
| /**
| * 保存置顶
| *
| * @param entity
| * @param hasSysIds 列表里有的系统id
| * @return
| */
| void saveTop(SystemTopEntity entity, List<String> hasSysIds);
|
| /**
| * 取消置顶
| *
| * @param entity
| * @return
| */
| void canleTop(SystemTopEntity entity);
|
| List<String> getObjectIdList(String type,String standId);
| }
|
|