出库任务增加出库开始时间和结束时间

This commit is contained in:
18942506660
2023-11-07 10:10:51 +08:00
parent 4e99b900cb
commit b74e86aceb
2 changed files with 27 additions and 1 deletions

View File

@@ -85,5 +85,17 @@ namespace WMS.Web.Core.Dto.OutStockTask
/// 创建时间erp那边的创建时间
///</summary>
public string CreateTime { get; set; }
/// <summary>
/// 单位
/// </summary>
public string Unit { get; set; }
/// <summary>
/// 出库开始时间
///</summary>
public DateTime? OutStockBeginTime { get; set; }
/// <summary>
/// 出库结束时间
///</summary>
public DateTime? OutStockEndTime { get; set; }
}
}