using System.Collections.Generic;
using static Yi.Framework.Core.Helper.TreeHelper;
namespace Yi.Framework.Rbac.Domain.Shared.Dtos
{
///
/// 部门树形DTO
///
public class DeptTreeDto : ITreeModel
{
///
/// 部门ID
///
public Guid Id { get; set; }
///
/// 父部门ID
///
public Guid ParentId { get; set; }
///
/// 排序号
///
public int OrderNum { get; set; }
///
/// 部门名称
///
public string DeptName { get; set; } = string.Empty;
///
/// 状态
///
public bool State { get; set; }
///
/// 子部门列表
///
public List? Children { get; set; }
}
}