namespace Tnb.EquipMgr.Entities.Dto
{
public class WorklineAndEquipTreeOutput
{
///
/// 获取节点id.
///
///
public string id { get; set; }
///
/// 标题
///
public string title { get; set; }
///
/// 获取节点父id.
///
///
public string parentId { get; set; }
///
/// 是否有子级.
///
public bool hasChildren { get; set; }
///
/// 设置Children.
///
public List? children { get; set; } = new List();
///
/// 子节点数量.
///
public int num { get; set; }
///
/// 是否为子节点.
///
public bool isLeaf { get; set; } = false;
}
}