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

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

@@ -28,6 +28,13 @@
public int BllType { get; set; }
public int Size { get; set; }
/// <summary>
/// 规格型号
/// </summary>
public string? material_specification { get; set; }
/// <summary>
/// 箱号
/// </summary>
public string? container_no { get; set; }
}
}