namespace RIZO.Model.MES.recipe { /// /// 产品配方关联表 /// [SugarTable("pf_ref_product_recipe")] public class PfRefProductRecipe { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 配方码(零件号) /// [SugarColumn(ColumnName = "recipe_code")] public string RecipeCode { get; set; } /// /// 产品,码 /// public string Productcode { get; set; } /// /// 产品名称(原零件名称) /// [SugarColumn(ColumnName = "product_name")] public string ProductName { get; set; } /// /// 工艺路线编码 /// [SugarColumn(ColumnName = "fk_routing_code")] public string FkRoutingCode { get; set; } /// /// 工序编码 /// [SugarColumn(ColumnName = "fk_operation_code")] public string FkOperationCode { get; set; } /// /// 所属流程编码 /// [SugarColumn(ColumnName = "fk_flow_code")] public string FkFlowCode { get; set; } /// /// 产线编号 /// [SugarColumn(ColumnName = "fk_line_code")] public string FkLineCode { 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; } } }