using Admin.NET.Core; namespace Admin.NET.Application.Entity; /// /// 生产任务单 /// [SugarTable("ProductionTasks","生产任务单")] public class ProductionTasks : EntityTenant { /// /// 单号 /// [SugarColumn(ColumnName = "OddNumber", ColumnDescription = "单号", Length = 32)] public string? OddNumber { get; set; } /// /// 计划开工日期 /// [SugarColumn(ColumnName = "PlanStartDate", ColumnDescription = "计划开工日期")] public DateTime? PlanStartDate { get; set; } /// /// 状态 /// [SugarColumn(ColumnName = "State", ColumnDescription = "状态")] public int? State { get; set; } /// /// 生产类型 /// [SugarColumn(ColumnName = "ProductType", ColumnDescription = "生产类型", Length = 32)] public string? ProductType { get; set; } /// /// 产品名称 /// [SugarColumn(ColumnName = "Name", ColumnDescription = "产品名称", Length = 32)] public string? Name { get; set; } /// /// 产品编码 /// [SugarColumn(ColumnName = "CodeNum", ColumnDescription = "产品编码", Length = 32)] public string? CodeNum { get; set; } /// /// 规格型号 /// [SugarColumn(ColumnName = "Specifications", ColumnDescription = "规格型号", Length = 32)] public string? Specifications { get; set; } /// /// 批次 /// [SugarColumn(ColumnName = "Batch", ColumnDescription = "批次")] public int? Batch { get; set; } /// /// 生产线 /// [SugarColumn(ColumnName = "ProductionLine", ColumnDescription = "生产线", Length = 32)] public string? ProductionLine { get; set; } /// /// 开工时间 /// [SugarColumn(ColumnName = "StartDate", ColumnDescription = "开工时间")] public DateTime? StartDate { get; set; } /// /// 完工时间 /// [SugarColumn(ColumnName = "EndDate", ColumnDescription = "完工时间")] public DateTime? EndDate { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "Remarks", ColumnDescription = "备注", Length = 64)] public string? Remarks { get; set; } }