using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CapMachine.Model.PLCParsModel { public class PlcParsDataQuick { public PlcParsDataQuick() { Steps = new List(); Unit = ""; } /// /// 名称 /// public string? Name { get; set; } /// /// Model 名称/英文名称 /// public string? EnName { get; set; } /// /// 单位 /// public string? Unit { get; set; } /// /// 分辨率 /// public int? Ratio { get; set; } /// /// 步骤集合信息 /// public List Steps { get; set; } /// /// 值首地址 /// public int ValueStartAddress { get; set; } /// /// 步长 /// public int Step { get; set; } = 100; } }