using System.Collections.Generic; using System.Threading.Tasks; namespace Magic.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); }