Files
CapMachine/CapMachine.Wpf/ChannelModel/ProRunChannelData.cs
2025-04-14 10:33:49 +08:00

64 lines
1.5 KiB
C#

using CapMachine.Wpf.Dtos;
using CapMachine.Wpf.Models.ProModelPars;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.ChannelModel
{
/// <summary>
/// 程序运行管道数据
/// </summary>
public class ProRunChannelData
{
/// <summary>
/// 参数名称
/// </summary>
public string? MeterName { get; set; }
/// <summary>
/// 程序Seg
/// </summary>
public string? ProSegName { get; set; }
/// <summary>
/// 程序步骤
/// </summary>
public int MeterStep { get; set; }
/// <summary>
/// 斜坡打点步骤
/// </summary>
public int SlopStepNo { get; set; }
/// <summary>
/// 值类型
/// </summary>
public RunStepType RunStepType { get; set; }
/// <summary>
/// 值
/// </summary>
public int SV { get; set; }
/// <summary>
/// PID的配置信息
/// </summary>
public PID? CurLoadPID { get; set; }
/// <summary>
/// Alarm的配置信息
/// </summary>
public Limit? CurLoadLimit { get; set; }
/// <summary>
/// 拓展参数集合
/// 比如:速度参数拓展的输出锁定、吸排气阀,压缩机使能等这些拓展参数
/// 也可以是其他参数附带的拓展信息
/// </summary>
public List<StepExd>? ListStepExd { get; set; }
}
}