出入库,后道标签打印调整(后道标签打印有问题)

This commit is contained in:
2025-08-28 10:10:15 +08:00
parent 781a519803
commit 0350a43055
21 changed files with 1350 additions and 420 deletions

View 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; }
}
}