2025-09-25 14:37:10 +08:00
|
|
|
|
/*
|
|
|
|
|
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
2025-09-26 13:35:45 +08:00
|
|
|
|
*Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹IHR_DeptSyncRepository编写接口
|
2025-09-25 14:37:10 +08:00
|
|
|
|
*/
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using VOL.Core.BaseProvider;
|
|
|
|
|
using VOL.Entity.DomainModels;
|
|
|
|
|
using VOL.Core.Extensions.AutofacManager;
|
2025-09-26 13:35:45 +08:00
|
|
|
|
namespace VOL.HR.IRepositories
|
2025-09-25 14:37:10 +08:00
|
|
|
|
{
|
2025-09-26 13:35:45 +08:00
|
|
|
|
public partial interface IHR_DeptSyncRepository : IDependency,IRepository<HR_DeptSync>
|
2025-09-25 14:37:10 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|