新增对象深拷贝通用函数,新增wms载具更换函数

This commit is contained in:
DEVICE8\12494
2023-05-31 14:34:31 +08:00
parent 70e01de66c
commit 38a62de63a
15 changed files with 333 additions and 29 deletions

View File

@@ -77,12 +77,12 @@ public partial class WmsCarryReplaceCode : BaseEntity<string>
/// <summary>
/// 创建用户
/// </summary>
public string create_id { get; set; } = string.Empty;
public string? create_id { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime create_time { get; set; } = DateTime.Now;
public DateTime? create_time { get; set; }
/// <summary>
/// 修改用户
@@ -94,9 +94,4 @@ public partial class WmsCarryReplaceCode : BaseEntity<string>
/// </summary>
public DateTime? modify_time { get; set; }
/// <summary>
/// 行号
/// </summary>
public int no { get; set; }
}