刘光辉
昨天 bb638871a7fb692d80f1b7a758f991dc0879002c
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
package jnpf.base.service;
 
import jnpf.base.entity.SystemShareEntity;
import jnpf.base.model.share.SystemShareVo;
 
import java.util.List;
 
/**
 * 跨应用数据Service
 *
 * @author JNPF开发平台组
 * @version v6.1.0
 * @copyright 引迈信息技术有限公司
 * @date 2025/7/30 16:22:57
 */
public interface SystemShareService extends SuperService<SystemShareEntity> {
 
    /**
     * 获取跨应用数据
     *
     * @return
     */
    List<SystemShareEntity> getList();
 
    /**
     * 保存数据
     *
     * @param ids
     * @return
     */
    void save(List<String> ids);
 
    /**
     * 获取回显数据
     *
     * @return
     */
    List<SystemShareVo> selectedList(List<String> ids);
 
    /**
     * 获取下拉数据
     *
     * @return
     */
    List<SystemShareVo> selector();
}