You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
562 B
19 lines
562 B
using Znyc.Recruitment.Admin.Commons.IRepositories;
|
|
using Znyc.Recruitment.Admin.Security.Entitys;
|
|
|
|
namespace Znyc.Recruitment.Admin.Security.IRepositories
|
|
{
|
|
/// <summary>
|
|
/// 组织仓储接口
|
|
/// 这里用到的Organize业务对象,是领域对象
|
|
/// </summary>
|
|
public interface IOrganizeRepository : IRepository<OrganizeEntity, long>
|
|
{
|
|
/// <summary>
|
|
/// 获取根节点组织
|
|
/// </summary>
|
|
/// <param name="id">组织Id</param>
|
|
/// <returns></returns>
|
|
OrganizeEntity GetRootOrganize(long id);
|
|
}
|
|
}
|