3 天以前 b852254d90e7d1955db31db154193ec8ee84d8b3
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
package cn.iocoder.yudao.module.mes.api.cal;
 
import cn.iocoder.yudao.module.mes.api.cal.dto.MesCalTeamRespDTO;
 
import java.util.Collection;
import java.util.List;
 
/**
 * MES 班组 API 接口
 *
 * <p>供 HRM 等模块引用,按班组 ID 批量查询班组编码/名称,用于员工主档「所属班组」回显。
 *
 * @author 超级管理员
 */
public interface MesCalTeamApi {
 
    /**
     * 按班组 ID 集合查询班组列表
     *
     * @param teamIds 班组 ID 集合(为空返回空列表)
     * @return 班组列表
     */
    List<MesCalTeamRespDTO> getTeamList(Collection<Long> teamIds);
 
}