using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NEIntelligentControl2.Models.WinForms { public class AiPointData { private string pointName = ""; /// /// 测点名称 /// public string PointName { get { return this.pointName; } set { if (value != this.pointName) { pointName = value; } } } private string tagName = ""; /// /// 点名 /// public string TagName { get { return this.tagName; } set { if (value != this.tagName) { tagName = value; } } } private string pointValue = "0.0"; /// /// 测点值 /// public string PointValue { get { return this.pointValue; } set { if (value != this.pointValue) { pointValue = value; } } } private string uniformCode = ""; /// /// 统一编码 /// public string UniformCode { get { return this.uniformCode; } set { if (value != this.uniformCode) { uniformCode = value; } } } } }