出入库,后道标签打印调整(后道标签打印有问题)
This commit is contained in:
29
ZR.Model/MES/wms/WmOutOrderMaterialRel.cs
Normal file
29
ZR.Model/MES/wms/WmOutOrderMaterialRel.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user