EnumTaskChainType新增,电梯,输送线

This commit is contained in:
yang.lee
2023-11-09 11:48:45 +08:00
parent 1b3b30662c
commit d757785f0b
4 changed files with 14 additions and 2 deletions

View File

@@ -73,5 +73,9 @@ public partial class WmsAreaH : BaseEntity<string>
/// 时间戳(用于并发控制)
/// </summary>
public DateTime? timestamp { get; set; }
/// <summary>
/// 第三方设备类型
/// </summary>
public string third_eqp_type { get; set; }
}

View File

@@ -13,4 +13,9 @@ public partial class WmsPretaskH : ITaskManagerDel
/// </summary>
[SugarColumn(IsIgnore = true)]
public int move_num { get; set; }
/// <summary>
/// 第三方设备类型
/// </summary>
[SugarColumn(IsIgnore = true)]
public string third_eqp_type { get; set; }
}

View File

@@ -8,5 +8,7 @@
CTU = 1,
KIVA = 2,
AGV = 3,
= 4,
线 = 5,
}
}