配置参数下载和解析的开发-未完成

This commit is contained in:
2025-02-24 11:21:23 +08:00
parent c22a8cc98f
commit d2ef6f9961
25 changed files with 2273 additions and 189 deletions

View File

@@ -1,4 +1,5 @@
using CapMachine.Model;
using CapMachine.Wpf.Models.ProModelPars;
using HslCommunication;
using Prism.Mvvm;
@@ -17,12 +18,12 @@ namespace CapMachine.Wpf.Models
/// </summary>
public MeterRtDataModel()
{
ListProStepExecuteInfo = new List<ProStepExecute>();
ListProStepExecuteInfo = new List<ProStepExe>();
ListQuickProStepExecuteInfo = new List<QuickProStepExecute>();
QuickRunTimeInfo = new QuickRunTime();
QuickNextMeterStep = new QuickProStepExecute();
RunTimeInfo = new MeterRunTime();
NextMeterStep = new ProStepExecute();
NextMeterStep = new ProStepExe();
}
@@ -252,7 +253,7 @@ namespace CapMachine.Wpf.Models
/// <summary>
/// 程序段和程序步骤执行具体方法
/// </summary>
public List<ProStepExecute> ListProStepExecuteInfo { get; set; }
public List<ProStepExe> ListProStepExecuteInfo { get; set; }
/// <summary>
/// 快速设置程序段和程序步骤执行具体方法
@@ -277,7 +278,7 @@ namespace CapMachine.Wpf.Models
/// <summary>
/// 仪表下一步具体程序步骤
/// </summary>
public ProStepExecute NextMeterStep { get; set; }
public ProStepExe NextMeterStep { get; set; }
/// <summary>
/// Quick仪表下一步具体程序步骤