namespace Admin.NET.Application; /// /// 打印条码详情输出参数 /// public class PrintCodeDetailDto { /// /// 主键Id /// public long Id { get; set; } /// /// 条码 /// 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; } /// /// 打印单ID /// public long? TempListId { get; set; } /// /// 汇报单ID /// public long? ReportTableId { get; set; } /// /// 仓库ID /// public long? WarehouseID { get; set; } /// /// 父节点ID /// public long? FatherId { get; set; } /// /// 物料ID /// public long? MaterialsId { get; set; } /// /// 打码时间 /// public DateTime? PrintCodeTime { get; set; } /// /// 扫码时间 /// public DateTime? ScanCodeTime { get; set; } /// /// 备注 /// public string? Remarks { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// 创建者Id /// public long? CreateUserId { get; set; } /// /// 创建者姓名 /// public string? CreateUserName { get; set; } /// /// 修改者Id /// public long? UpdateUserId { get; set; } /// /// 修改者姓名 /// public string? UpdateUserName { get; set; } /// /// 软删除 /// public bool IsDelete { get; set; } }