using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CapMachine.Wpf.Models.ProModelPars { /// /// ProStepExe 参数执行的拓展参数 /// 比如:速度参数拓展的输出锁定、吸排气阀,压缩机使能等这些拓展参数 /// public class StepExd { /// /// 参数名称 /// public string? Name { get; set; } /// /// 值信息 /// public object? Value { get; set; } /// /// 值类型 /// public ExdValueType ValueType { get; set; } } /// /// 值类型 /// public enum ExdValueType { /// /// 布尔 /// Bool=1, /// /// 整型数据 /// Short=2, /// /// 浮点数 /// Double=3, } }