盘点物料库存查询和数量提交

This commit is contained in:
2024-10-31 18:11:49 +08:00
parent b750f2a981
commit 55d79652ba
6 changed files with 369 additions and 1 deletions

View File

@@ -63,5 +63,17 @@ public partial class WmsInventorycheckRecord : BaseEntity<string>
/// 库位编码
/// </summary>
public string? location_code { get; set; }
/// <summary>
/// 批次
/// </summary>
public string? code_batch { get; set; }
/// <summary>
/// 查询数量
/// </summary>
public string? search_qty { get; set; }
/// <summary>
/// 实际盘点数量
/// </summary>
public string? check_qty { get; set; }
}