分拣任务变更 现场问题处理

This commit is contained in:
2024-10-15 14:30:59 +08:00
parent da3db7aee6
commit ca45839b2a
15 changed files with 262 additions and 35 deletions

View File

@@ -69,6 +69,16 @@ public partial class WmsSortingtask : BaseEntity<string>
/// </summary>
public DateTime create_time { get; set; } = DateTime.Now;
/// <summary>
/// 转移托盘
/// </summary>
public int? change_carry { get; set; }
/// <summary>
/// 新托盘
/// </summary>
public string? new_carrycode { get; set; }
/// <summary>
/// 来源单据id
/// </summary>
@@ -91,4 +101,8 @@ public partial class WmsSortingtask : BaseEntity<string>
[SugarColumn(IsIgnore = true)]
public string erp_bill_code { get; set; }
[SugarColumn(IsIgnore = true)]
public string container_no { get; set; }
}