namespace RIZO.Model.MES.recipe { /// /// 配方下达记录表 /// [SugarTable("pf_recipe_issue_log")] public class PfRecipeIssueLog { /// /// 下达记录ID(主键) /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 配方码 /// [SugarColumn(ColumnName = "recipe_code")] public string RecipeCode { get; set; } /// /// 版本编号 /// public string Version { get; set; } /// /// 下达时间 /// [SugarColumn(ColumnName = "issue_time")] public DateTime IssueTime { get; set; } /// /// 工单号 /// [SugarColumn(ColumnName = "workorder")] public string Workorder { get; set; } /// /// 产品码 /// [SugarColumn(ColumnName = "productcode")] public string Productcode { get; set; } /// /// 产品名称 /// [SugarColumn(ColumnName = "productname")] public string Productname { 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; } } }