2025-09-25 14:37:10 +08:00
|
|
|
/*
|
|
|
|
*所有关于HR_EmployeeSync类的业务代码接口应在此处编写
|
|
|
|
*/
|
|
|
|
using VOL.Core.BaseProvider;
|
|
|
|
using VOL.Entity.DomainModels;
|
|
|
|
using VOL.Core.Utilities;
|
|
|
|
using System.Linq.Expressions;
|
2025-09-26 13:35:45 +08:00
|
|
|
using VOL.YSErp.Models.Biz;
|
|
|
|
using VOL.DingTalk.Models.Biz;
|
2025-09-25 14:37:10 +08:00
|
|
|
namespace VOL.HR.IServices
|
|
|
|
{
|
|
|
|
public partial interface IHR_EmployeeSyncService
|
|
|
|
{
|
2025-09-26 13:35:45 +08:00
|
|
|
Task<List<YSERPEmployee>> GetAllYSEmployees();
|
|
|
|
|
|
|
|
|
|
|
|
Task<List<DingTalkEmployee>> GetAllDingTalkEmployees();
|
|
|
|
|
|
|
|
|
|
|
|
Task GenEmpSystemShip();
|
2025-09-25 14:37:10 +08:00
|
|
|
}
|
|
|
|
}
|