|
|
@@ -1523,6 +1523,7 @@ namespace TeamAAS_VP.ViewModels
|
|
|
IsBasePartCodeChooseScrew = sys.IsBasePartCodeChooseScrew;
|
|
|
IsBasePartOpenLight = sys.IsBasePartOpenLight;
|
|
|
IsBasePartOpenLightKB = sys.IsBasePartOpenLightKB;
|
|
|
+ IsMesResult = sys.IsMesResult;
|
|
|
ChooseScrewModel = sys.ChooseScrewModel;
|
|
|
}
|
|
|
|
|
|
@@ -1624,6 +1625,15 @@ namespace TeamAAS_VP.ViewModels
|
|
|
set { SetProperty(ref _IsBasePartOpenLightKB, value); }
|
|
|
}
|
|
|
|
|
|
+ private bool _IsMesResult;
|
|
|
+
|
|
|
+ public bool IsMesResult
|
|
|
+ {
|
|
|
+ get { return _IsMesResult; }
|
|
|
+ set { SetProperty(ref _IsMesResult, value); }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
private bool _IsBasePartCodeChooseScrew;
|
|
|
/// <summary>
|
|
|
/// 是否通过零件码判断螺丝型号
|
|
|
@@ -1815,6 +1825,7 @@ namespace TeamAAS_VP.ViewModels
|
|
|
sysConfig.ScrewCurvePath = ScrewCurvePath;
|
|
|
sysConfig.IsBasePartCodeGetSN = IsBasePartCodeGetSN;
|
|
|
sysConfig.IsBasePartCodeChooseScrew = IsBasePartCodeChooseScrew;
|
|
|
+ sysConfig.IsMesResult = IsMesResult;
|
|
|
sysConfig.IsBasePartOpenLightKB = IsBasePartOpenLightKB;
|
|
|
sysConfig.IsBasePartOpenLight = IsBasePartOpenLight;
|
|
|
sysConfig.ChooseScrewModel = ChooseScrewModel;
|