同步入库单-方法优化

This commit is contained in:
tongfei
2023-11-13 14:08:01 +08:00
parent 706550e224
commit 725ca6cd23
10 changed files with 363 additions and 376 deletions

View File

@@ -70,10 +70,14 @@ namespace WMS.Web.Domain.Entitys
/// 创建
/// </summary>
/// <param name="type"></param>
public void Create(InstockType type)
/// <param name="sourceBillNo"></param>
/// <param name="createTime"></param>
public void Create(InstockType type,string sourceBillNo, DateTime createTime)
{
this.Status = InstockStatus.Wait;
this.Type = type;
this.SourceBillNo = sourceBillNo;
this.CreateTime = createTime;
}