using System.Collections.Generic; using System.Threading.Tasks; namespace Myshipping.Core.Service; public interface ISysEmpExtOrgPosService { Task AddOrUpdate(long empId, List extIdList); Task DeleteEmpExtInfoByUserId(long empId); Task> GetEmpExtOrgPosList(long empId); Task> GetEmpExtOrgPosList(List empIds); Task HasExtOrgEmp(long orgId); Task HasExtPosEmp(long posId); }