namespace Admin.NET.Application; /// /// 汇报单输出参数 /// public class PrintCodeTreeData { /// /// 条码 /// public string? Code { get; set; } /// /// 上级码 /// public string? FatherCode { get; set; } /// /// 条码类型 /// public string? CodeName { get; set; } /// /// 数量 /// public int? Count { get; set; } /// /// 单位 /// public string? Unit { get; set; } /// /// 基本数量 /// public int? BaseCount { get; set; } /// /// 基本单位 /// public string? BaseUnit { get; set; } /// /// 子码数 /// public int? ChildCount { get; set; } /// /// 备注 /// public string? Remarks { get; set; } public List Children { get; set; } public bool HasChildren { get; set; } = true; }