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