This commit is contained in:
ky_sunl
2021-04-23 10:38:52 +00:00
parent d60155d02f
commit c2ed43238b
25 changed files with 120 additions and 118 deletions

View File

@@ -5,10 +5,10 @@ namespace Dilon.Core.Service
{
public interface ISysEmpExtOrgPosService
{
Task AddOrUpdate(long empId, List<EmpExtOrgPosOutput> extIdList);
Task DeleteEmpExtInfoByUserId(long empId);
Task<List<EmpExtOrgPosOutput>> GetEmpExtOrgPosList(long empId);
Task<bool> HasExtOrgEmp(long orgId);
Task<bool> HasExtPosEmp(long posId);
Task AddOrUpdate(string empId, List<EmpExtOrgPosOutput> extIdList);
Task DeleteEmpExtInfoByUserId(string empId);
Task<List<EmpExtOrgPosOutput>> GetEmpExtOrgPosList(string empId);
Task<bool> HasExtOrgEmp(string orgId);
Task<bool> HasExtPosEmp(string posId);
}
}

View File

@@ -5,10 +5,10 @@ namespace Dilon.Core.Service
public interface ISysEmpService
{
Task AddOrUpdate(EmpOutput2 sysEmpParam);
Task DeleteEmpInfoByUserId(long empId);
Task<EmpOutput> GetEmpInfo(long empId);
Task<long> GetEmpOrgId(long empId);
Task<bool> HasOrgEmp(long orgId);
Task UpdateEmpOrgInfo(long orgId, string orgName);
Task DeleteEmpInfoByUserId(string empId);
Task<EmpOutput> GetEmpInfo(string empId);
Task<string> GetEmpOrgId(string empId);
Task<bool> HasOrgEmp(string orgId);
Task UpdateEmpOrgInfo(string orgId, string orgName);
}
}