|
@@ -69,8 +69,9 @@ namespace Venus_MainPages.ViewModels
|
|
|
private WaferAssociationInfo _lp1WaferAssociation;
|
|
|
private WaferAssociationInfo _lp2WaferAssociation;
|
|
|
private WaferAssociationInfo _lp3WaferAssociation;
|
|
|
-
|
|
|
|
|
|
+ private int m_CycledWafer;
|
|
|
+ private int m_CycleCountDisplay;
|
|
|
|
|
|
|
|
|
#endregion
|
|
@@ -300,7 +301,16 @@ namespace Venus_MainPages.ViewModels
|
|
|
get { return _lp3WaferAssociation; }
|
|
|
set { SetProperty(ref _lp3WaferAssociation, value); }
|
|
|
}
|
|
|
-
|
|
|
+ public int CycledWafer
|
|
|
+ {
|
|
|
+ get { return m_CycledWafer; }
|
|
|
+ set { SetProperty(ref m_CycledWafer, value); }
|
|
|
+ }
|
|
|
+ public int CycleCountDisplay
|
|
|
+ {
|
|
|
+ get { return m_CycleCountDisplay; }
|
|
|
+ set { SetProperty(ref m_CycleCountDisplay, value); }
|
|
|
+ }
|
|
|
#endregion
|
|
|
|
|
|
#region 命令
|
|
@@ -705,8 +715,10 @@ namespace Venus_MainPages.ViewModels
|
|
|
m_RtDataKeys.Add("TM.LLBESlitDoor.IsClosed");
|
|
|
m_RtDataKeys.Add("System.IsAutoMode");
|
|
|
|
|
|
+ m_RtDataKeys.Add("Scheduler.CycledCount");
|
|
|
+ m_RtDataKeys.Add("Scheduler.CycledWafer");
|
|
|
+
|
|
|
|
|
|
-
|
|
|
|
|
|
}
|
|
|
|