23 lines
491 B
C#
23 lines
491 B
C#
/*
|
|
*所有关于HR_DeptSync类的业务代码接口应在此处编写
|
|
*/
|
|
using VOL.Core.BaseProvider;
|
|
using VOL.Entity.DomainModels;
|
|
using VOL.Core.Utilities;
|
|
using System.Linq.Expressions;
|
|
using VOL.DingTalk.Models.Biz;
|
|
namespace VOL.HR.IServices
|
|
{
|
|
public partial interface IHR_DeptSyncService
|
|
{
|
|
Task CacheYSDepartments();
|
|
|
|
|
|
Task CacheDingTalkDepartments();
|
|
|
|
Task SyncYSERPDeptToDingTalk();
|
|
|
|
Task CreateDingTalkDept(DingTalkDepartment dept);
|
|
}
|
|
}
|