using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZR.Model.MES.mm { /// /// 配料任务清单 /// [SugarTable("mm_ingredient_task")] public class MmIngredientTask { /// /// id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 站点 /// [SugarColumn(ColumnName = "agv_position")] public string AgvPosition { get; set; } /// /// 配料任务id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "task_id")] public long TaskId { get; set; } /// /// 工单id /// public string Workorder { get; set; } /// /// 零件号id /// public string Partnumber { get; set; } /// /// 上件数 /// public int? PreviousNumber { get; set; } /// /// 已经上件数 /// public int? PreviousNumbered { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "cREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "uPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "uPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }