DigitalFactory/Admin.NET/Admin.NET.Application/Utils/TreeData.cs

23 lines
352 B
C#
Raw Permalink Normal View History

2024-05-28 10:30:50 +00:00
namespace Admin.NET.Application;
/// <summary>
/// 打印条码树形数据
/// </summary>
public class TreeData
{
/// <summary>
/// 主键Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Label { get; set; }
public List<TreeData> Children { get; set; }
}