namespace Admin.NET.Application; /// /// 汇报单详情输出参数 /// public class ReportDetailTableOutput { /// /// 主键Id /// public long Id { get; set; } /// /// 产品名称 /// public string ProductName { get; set; } /// /// 产品编码 /// public string? ProductCodeNum { get; set; } /// /// 单号 /// public string? OddNumber { get; set; } /// /// 状态 /// public string State { get; set; } /// /// 生产类型 /// public string? ProductType { get; set; } /// /// 生产线 /// public string? ProductionLine { get; set; } /// /// 生产线编码 /// public string? CodeNum { get; set; } /// /// 源单号 /// public string? SourceNumber { get; set; } /// /// 规格型号 /// public string? Specifications { get; set; } /// /// 完工数量 /// public int? ProductCount { get; set; } /// /// 入库数量 /// public int? PutWarehouse { get; set; } /// /// 基本完工数量 /// public int? BaseProductCount { get; set; } /// /// 基本入库数量 /// public int? BasePutWarehouse { get; set; } /// /// 单位 /// public string? Unit { get; set; } /// /// 基本单位 /// public string? BaseUnit { get; set; } /// /// 批次 /// public string? Batch { get; set; } /// /// 包装规格 /// public string? Package { get; set; } /// /// 包装数量 /// public int? PackageCount { get; set; } /// /// 采集失败数量 /// public int? GatherFalseCount { get; set; } /// /// 生产日期 /// public DateTime? ProductDate { get; set; } /// /// 班组 /// public string? TeamGroup { get; set; } /// /// 操作工人 /// public string? Operator { get; set; } /// /// 完工时间 /// public DateTime? EndDate { get; set; } /// /// 源单号 /// public string? SourceOddNumber { get; set; } /// /// 物料ID /// public long? MaterialsId { get; set; } /// /// 单位组ID /// public long? UnitGroupId { get; set; } /// /// 备注 /// public string? Remarks { get; set; } /// /// 租户Id /// public long? TenantId { 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; } }