using JNPF.Systems.Entitys.Permission;
namespace JNPF.Systems.Interfaces.Permission;
///
/// 业务契约:部门管理.
///
public interface IDepartmentService
{
///
/// 获取部门列表.
///
///
Task> GetListAsync();
///
/// 部门名称.
///
///
///
string GetDepName(string id);
///
/// 公司名称.
///
///
///
string GetComName(string id);
///
/// 公司结构树.
///
///
///
string GetOrganizeNameTree(string id);
///
/// 公司id.
///
///
///
string GetCompanyId(string id);
///
/// 获取公司下所有部门.
///
///
///
Task> GetCompanyAllDep(string id);
}