namespace Admin.NET.Application; /// /// 打印条码树形数据 /// public class TreeData { /// /// 主键Id /// public long Id { get; set; } /// /// 名称 /// public string Label { get; set; } public List Children { get; set; } }