using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmart.Model { public class PublishModel { /// /// 设备名称 /// public string DeviceName { get; set; } = string.Empty; /// /// 变量实际地址 /// public string RealAddress { get; set; } = string.Empty; /// /// 变量名称 /// public string VarName { get; set; } = string.Empty; /// /// 变量长度 /// public int Length { get; set; } = 1; /// /// 变量当前值 /// public string Value { get; set; } = string.Empty; /// /// 变量数据类型 /// public EDataType DataType { get; set; } } }