using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CapMachine.Model { /// /// 步骤的PLC数据单元 /// public class PlcMeterStepCell { /// /// 步骤序号 /// 从1开始 /// public int Step { get; set; } /// /// 时间-分 /// public int TimeMin { get; set; } /// /// 时间-秒 /// public int TimeSec { get; set; } /// /// 循环 /// public int Cycle { get; set; } /// /// 值 /// public double? Value { get; set; } ///// ///// 地址 ///// //public string? Address { get; set; } /// /// 值地址 /// public string? ValueAddress { get; set; } /// /// 分钟地址 /// public string? MinAddress { get; set; } /// /// 秒地址 /// public string? SecAddress { get; set; } /// /// 循环地址 /// public string? CycleAddress { get; set; } } }