新增对象深拷贝通用函数,新增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

@@ -42,7 +42,7 @@ public partial class WmsCarryH : BaseEntity<string>
/// <summary>
/// 载具状态
/// </summary>
public string carry_status { get; set; } = string.Empty;
public int carry_status { get; set; };
/// <summary>
/// 载具分类ID
@@ -114,4 +114,19 @@ public partial class WmsCarryH : BaseEntity<string>
/// </summary>
public DateTime? timestamp { get; set; }
/// <summary>
/// 打包号
/// </summary>
public string? bale_num { get; set; }
/// <summary>
/// 齐套搭配方案ID
/// </summary>
public string? collocation_scheme_id { get; set; }
/// <summary>
/// 齐套搭配方案编号
/// </summary>
public string? collocation_scheme_code { get; set; }
}