namespace ZR.Model.MES.wms { /// /// 物料表和出库单关联表 /// [SugarTable("wm_material_outorder")] public class WmMaterialOutorder { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 物料表主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_material_id")] public string FkMaterialId { get; set; } /// /// 出货单id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_outorder_id")] public string FkOutorderId { get; set; } /// /// 出货数量 /// [SugarColumn(ColumnName = "outhouse_num")] public int OuthouseNum { 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; } } }