LIN 调度表 V1

This commit is contained in:
2025-08-14 11:26:01 +08:00
parent d6f6022482
commit 2312e6f611
15 changed files with 911 additions and 10 deletions

View File

@@ -43,5 +43,16 @@ namespace CapMachine.Wpf.Dtos
get { return _LdfPath; }
set { _LdfPath = value; RaisePropertyChanged(); }
}
private bool _SchEnable;
/// <summary>
/// 调度表是否启用
/// </summary>
public bool SchEnable
{
get { return _SchEnable; }
set { _SchEnable = value; RaisePropertyChanged(); }
}
}
}