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 decimal? BaseCount { get; set; } /// /// 基本单位 /// public string? BaseUnit { get; set; } /// /// 子码数 /// public int? ChildCount { get; set; } /// /// 备注 /// public string? Remarks { get; set; } /// /// 扫码时间 /// public DateTime? ScanCodeTime { get; set; } /// /// 扫码人 /// public string? ScanCodeName { get; set; } public List Children { get; set; } public bool HasChildren { get; set; } = true; /// /// 生产状态 /// public long? State { get; set; } }