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);
|
|
}
|