增加序列号服务

This commit is contained in:
18942506660
2023-11-11 14:18:47 +08:00
parent d0139f855a
commit 32c63959dc
9 changed files with 109 additions and 10 deletions

View File

@@ -33,15 +33,15 @@ namespace WMS.Web.Domain.Entitys
/// <summary>
/// 供应商Id
/// </summary>
public int? SupplierId { get; set; }
public int SupplierId { get; set; } = 0;
/// <summary>
/// 组织Id
/// </summary>
public int? OrgId { get; set; }
public int OrgId { get; set; } = 0;
/// <summary>
/// 完成装箱时间
/// </summary>
public string CompleteCartonTime { get; set; }
public DateTime CompleteCartonTime { get; set; } = DateTime.Now;
/// <summary>
/// 箱子创建用户
/// </summary>