电梯控制bug处理 包材出库逻辑变更

This commit is contained in:
2024-07-12 15:11:11 +08:00
parent a75fc548cb
commit f4cf422a83
15 changed files with 283 additions and 156 deletions

View File

@@ -114,4 +114,31 @@ public partial class WmsPackOutstockD : BaseEntity<string>
/// </summary>
public string? qc_res { get; set; }
/// <summary>
/// 载具id
/// </summary>
public string? carry_id { get; set; }
/// <summary>
/// 载具编码
/// </summary>
public string? carry_code { get; set; }
/// <summary>
/// 起点id
/// </summary>
public string? startlocation_id { get; set; }
/// <summary>
/// 起点编码
/// </summary>
public string? startlocation_code { get; set; }
/// <summary>
/// 终点id
/// </summary>
public string? endlocation_id { get; set; }
/// <summary>
/// 终点编码
/// </summary>
public string? endlocation_code { get; set; }
}