增加CAN 调度表的配置

This commit is contained in:
2025-09-08 23:04:48 +08:00
parent 6555741b14
commit 2c0575eea7
12 changed files with 1086 additions and 27 deletions

View File

@@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace CapMachine.Wpf.Dtos
{
public class CANConfigExdDto:BindableBase
public class CANConfigExdDto : BindableBase
{
/// <summary>
/// 主键
@@ -43,5 +43,15 @@ namespace CapMachine.Wpf.Dtos
get { return _DbcPath; }
set { _DbcPath = value; RaisePropertyChanged(); }
}
private bool _SchEnable;
/// <summary>
/// 调度表是否启用
/// </summary>
public bool SchEnable
{
get { return _SchEnable; }
set { _SchEnable = value; RaisePropertyChanged(); }
}
}
}