出库时,增加型号规格和箱号的判断

This commit is contained in:
2023-11-27 11:43:00 +08:00
parent 67ac295742
commit 6106263c8a
12 changed files with 30 additions and 14 deletions

View File

@@ -98,5 +98,12 @@ public partial class WmsPurchaseD : BaseEntity<string>
/// 本次到货数量
/// </summary>
public decimal purchase_arriveqty { get; set; }
/// <summary>
/// 规格型号
/// </summary>
public string? material_specification { get; set; }
/// <summary>
/// 箱号
/// </summary>
public string? container_no { get; set; }
}