wm:修改出库单

This commit is contained in:
qianhao.xu
2024-04-08 11:01:42 +08:00
parent be046ed354
commit fca042d60c
5 changed files with 63 additions and 23 deletions

View File

@@ -82,12 +82,22 @@ namespace ZR.Model.MES.wms.Dto
/// 需求数量
/// </summary>
public int RequireOutNum { get; set; }
/// <summary>
/// 需求箱数
/// </summary>
public int Require_pack_num { get; set; }
//现有箱数
//库存零件数
public int ItemNum { get; set; }
//库存箱数
public int PackageNum { get; set; }
//现有零件数
public int ItemNum { get; set; }
}

View File

@@ -87,5 +87,14 @@ namespace ZR.Model.MES.wms
///</summary>
[SugarColumn(ColumnName = "UPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
/// <summary>
/// 这一批次下的 库存箱子数
/// </summary>
public int Inventory_pack_num { get; set; }
/// <summary>
/// 这一批次下的 库存零件数
/// </summary>
public int Inventory_num { get; set; }
}
}