diff --git a/Rs.SkyLine/Commom/Scheduling.cs b/Rs.SkyLine/Commom/Scheduling.cs
index 4c3817f..4b9efd3 100644
--- a/Rs.SkyLine/Commom/Scheduling.cs
+++ b/Rs.SkyLine/Commom/Scheduling.cs
@@ -342,6 +342,19 @@ namespace Rs.MotionPlat.Commom
End
}
+ public class TransferSiloTray : Scheduling
+ {
+ ///
+ /// 原来料仓
+ ///
+ public SchedulingSiloBase.ESiloType From { get; set; }
+ ///
+ /// 目的料仓
+ ///
+ public SchedulingSiloBase.ESiloType To { get; set; }
+ }
+
+
public class SchedulingSiloBase : Scheduling
{
public ESiloType SiloType { get; set; }
@@ -949,6 +962,10 @@ namespace Rs.MotionPlat.Commom
///
RearrangeResult,
///
+ /// 转移料仓托盘, 发送 收到后原路返回
+ ///
+ TransferSiloTray,
+ ///
/// 扫描条码, 中控发送 回复
///
ScanBarcode,