diff --git a/SlnMesnac.WPF/ViewModel/IndexPage/ProductionLineViewModel.cs b/SlnMesnac.WPF/ViewModel/IndexPage/ProductionLineViewModel.cs
index c54957d..8c29704 100644
--- a/SlnMesnac.WPF/ViewModel/IndexPage/ProductionLineViewModel.cs
+++ b/SlnMesnac.WPF/ViewModel/IndexPage/ProductionLineViewModel.cs
@@ -94,6 +94,23 @@ namespace SlnMesnac.WPF.ViewModel.IndexPage
}
}
+ ///
+ /// RFID连接状态
+ ///
+ private string _rfidConnectState;
+ public string RFIDConnectState
+ {
+ get => _rfidConnectState;
+ set
+ {
+ if (_rfidConnectState != value)
+ {
+ _rfidConnectState = value;
+ RaisePropertyChanged(() => RFIDConnectState);
+ }
+ }
+ }
+
public ProductionLineViewModel()
{
GetOrderInfoCommand = new RelayCommand