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

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

@@ -88,6 +88,13 @@ public partial class WmsInventorycheckH : BaseEntity<string>
/// 盘点日期
/// </summary>
public string? check_date { get; set; }
/// <summary>
/// 盘点任务完成状态0未盘点1盘点中2已盘点
/// </summary>
public string? check_status { get; set; }
/// <summary>
/// 盘点完成时间
/// </summary>
public DateTime? check_time { get; set; }
}