物料收发明细加入操作人

This commit is contained in:
tongfei
2023-11-25 09:08:34 +08:00
parent 060a0dd22d
commit 0a96e5f418
5 changed files with 34 additions and 0 deletions

View File

@@ -70,5 +70,14 @@ namespace WMS.Web.Domain.Entitys
/// 操作时间
/// </summary>
public DateTime CreateTime { get; set; }
/// <summary>
/// 创建
/// </summary>
public void Create(int staffId)
{
this.CreatorId = staffId;
this.CreateTime = DateTime.Now;
}
}
}