23 lines
352 B
C#
23 lines
352 B
C#
|
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; }
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|