You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
486 B
C#
15 lines
486 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Magic.Core.Service;
|
|
|
|
public interface ISysEmpExtOrgPosService
|
|
{
|
|
Task AddOrUpdate(long empId, List<EmpExtOrgPosOutput> extIdList);
|
|
Task DeleteEmpExtInfoByUserId(long empId);
|
|
Task<List<EmpExtOrgPosOutput>> GetEmpExtOrgPosList(long empId);
|
|
Task<List<EmpExtOrgPosOutput>> GetEmpExtOrgPosList(List<long> empIds);
|
|
Task<bool> HasExtOrgEmp(long orgId);
|
|
Task<bool> HasExtPosEmp(long posId);
|
|
}
|