出库单保存

This commit is contained in:
18942506660
2023-10-28 10:06:16 +08:00
parent cff81fe647
commit 830ff9ea98
4 changed files with 83 additions and 2 deletions

View File

@@ -50,5 +50,14 @@ namespace WMS.Web.Domain.Entitys
/// 明细
/// </summary>
public List<OutStockDetails> Details = new List<OutStockDetails>();
/// <summary>
/// 创建
/// </summary>
/// <param name="creatorId"></param>
public void Create(int creatorId)
{
this.CreatorId = creatorId;
this.CreateTime = DateTime.Now;
}
}
}