using System.Collections.Generic;
using System.Data;
using System.Threading.Tasks;
using Znyc.Recruitment.Admin.Commons.Core.Dtos;
using Znyc.Recruitment.Admin.Commons.Entitys;
using Znyc.Recruitment.Admin.Commons.IServices;
using Znyc.Recruitment.Admin.Security.Dtos;
using Znyc.Recruitment.Admin.Security.Entitys;
namespace Znyc.Recruitment.Admin.Security.IServices
{
///
/// 组织机构
///
public interface IOrganizeService : IService
{
///
/// 获取组织机构适用于Vue 树形列表
///
///
Task> GetAllOrganizeTreeTable();
///
/// 获取根节点组织
///
/// 组织Id
///
OrganizeEntity GetRootOrganize(long id);
///
/// 按条件批量删除
///
/// 主键Id集合
/// 事务对象
///
CommonResult DeleteBatchWhere(DeletesInputDto ids, IDbTransaction trans = null);
///
/// 异步按条件批量删除
///
/// 主键Id集合
/// 事务对象
///
Task DeleteBatchWhereAsync(DeletesInputDto ids, IDbTransaction trans = null);
}
}