1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package cn.iocoder.yudao.module.hrm.api.handover;
|
| import java.util.Set;
|
| /**
| * 用户数据交接 API 接口
| * <p>
| * 供 CRM、ERP、MES 等模块调用,用于在查询"我的数据"时扩展用户ID范围,
| * 使交接人能查看离职人的业务数据
| *
| * @author 芋道源码
| */
| public interface HrmUserHandoverApi {
|
| /**
| * 扩展用户ID集合,将交接源用户ID加入
| *
| * @param userIds 用户ID集合
| * @return 扩展后的用户ID集合
| */
| Set<Long> expandUserIds(Set<Long> userIds);
|
| }
|
|