namespace ZR.Model.MES.wms { /// /// 物料表和出库单关联表 /// [SugarTable("wm_out_order_material_rel")] public class WmOutOrderMaterialRel { /// /// 出库单号 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_shipment_num")] public string FkShipmentNum { get; set; } /// /// 物料编码 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_material_code")] public string FkMaterialCode { get; set; } /// /// 出货数量 /// [SugarColumn(ColumnName = "number")] public int Number { get; set; } } }