using System.Collections.Generic; using System.Threading.Tasks; namespace Myshipping.Core.Service; public interface ISysEmpPosService { Task AddOrUpdate(long empId, List posIdList); Task DeleteEmpPosInfoByUserId(long empId); Task> GetEmpPosList(long empId); Task> GetEmpPosList(List empIds); Task HasPosEmp(long posId); /// /// 通过职位代码列表获取人员ID信息 /// /// 职位代码列表 /// 返回人员ID列表 Task> GetAllEmpByPos(List posCodeList); }