using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DOAN.Model.MES.mm { /// /// 备料任务详情 /// [SugarTable("mm_task_material_info")] public class MmTaskMaterialInfo { /// /// 雪花 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string Id { get; set; } /// /// 任务code /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_task_code")] public string FkTaskCode { get; set; } /// /// 物料code /// [SugarColumn(ColumnName = "material_code")] public string MaterialCode { get; set; } /// /// 物料名称 /// [SugarColumn(ColumnName = "material_name")] public string MaterialName { get; set; } /// /// 规格型号 /// public string Specification { get; set; } /// /// 配料数量 /// public decimal Quantity { get; set; } /// /// 单位 /// public string Unit { 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; } } }