using Admin.NET.Core; namespace Admin.NET.Application { /// /// /// public interface ISysEmpService { /// /// /// /// /// Task AddOrUpdate(EmpOutput2 sysEmpParam); /// /// /// /// /// Task DeleteEmpInfoByUserId(long empId); /// /// /// /// /// Task GetEmpInfo(long empId); /// /// /// /// /// Task GetEmpOrgId(long empId); /// /// /// /// /// Task HasOrgEmp(long orgId); /// /// /// /// /// /// Task UpdateEmpOrgInfo(long orgId, string orgName); /// /// /// /// /// Task> HasOrgEmp(List orgIds); } }