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",Length =50)] public string RecipeCode { get; set; } /// /// 产品,码 /// [SugarColumn(Length = 50)] public string Productcode { get; set; } /// /// 产品名称(原零件名称) /// [SugarColumn(ColumnName = "product_name", Length = 50)] public string ProductName { get; set; } /// /// 工艺路线编码 /// [SugarColumn(ColumnName = "fk_routing_code", Length = 50)] public string FkRoutingCode { get; set; } /// /// 工序编码 /// [SugarColumn(ColumnName = "fk_operation_code", Length = 50)] public string FkOperationCode { get; set; } /// /// 所属流程编码 /// [SugarColumn(ColumnName = "fk_flow_code", Length = 50)] public string FkFlowCode { get; set; } /// /// 产线编号 /// [SugarColumn(ColumnName = "fk_line_code", Length = 50)] public string FkLineCode { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "created_by", Length = 50)] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "created_time")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "updated_by", Length = 50)] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "updated_time")] public DateTime? UpdatedTime { get; set; } } }