using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CapMachine.Model.MeterConfig { /// /// 公共部分 /// public class MeterCom { /// /// 程序步骤序号 /// public int StepNo { get; set; } /// /// 开始值 /// public double StartValue { get; set; } /// /// 结束值 /// public double EndValue { get; set; } /// /// 维持时间 /// public int KeepTime { get; set; } /// /// 配置值类型 /// public ConfigValueType ValueType { get; set; } /// /// 常值 /// 在ValueType为常值时会使用 /// public double Constant { get; set; } } }