using Admin.NET.Core; namespace Admin.NET.Application.Entity; /// /// 打印记录 /// [SugarTable("printrecords","打印记录")] public class PrintRecords : EntityBase { /// /// 物料ID /// [SugarColumn(ColumnName = "MaterialsId", ColumnDescription = "物料ID")] public long? MaterialsId { get; set; } /// /// 名称 /// [SugarColumn(ColumnName = "Name", ColumnDescription = "名称", Length = 32)] public string? Name { get; set; } /// /// 批次 /// [SugarColumn(ColumnName = "Batch", ColumnDescription = "批次", Length = 32)] public string? Batch { get; set; } /// /// 完工数量 /// [SugarColumn(ColumnName = "ProductCount", ColumnDescription = "完工数量")] public int? ProductCount { get; set; } /// /// 基本完工数量 /// [SugarColumn(ColumnName = "BaseProductCount", ColumnDescription = "基本完工数量")] public int? BaseProductCount { get; set; } /// /// 单位 /// [SugarColumn(ColumnName = "Unit", ColumnDescription = "单位", Length = 32)] public string? Unit { get; set; } /// /// 生产日期 /// [SugarColumn(ColumnName = "ProductDate", ColumnDescription = "生产日期")] public DateTime? ProductDate { get; set; } /// /// 失效日期 /// [SugarColumn(ColumnName = "LoseDate", ColumnDescription = "失效日期")] public DateTime? LoseDate { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "Remarks", ColumnDescription = "备注", Length = 32)] public string? Remarks { get; set; } }