123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Runtime.CompilerServices;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.WinForms
- {
- public class DiPointData
- {
- private string pointName = "";
- /// <summary>
- /// 测点名称
- /// </summary>
- public string PointName
- {
- get { return this.pointName; }
- set
- {
- if (value != this.pointName)
- {
- pointName = value;
- }
- }
- }
- private string tagName = "";
- /// <summary>
- /// 点名
- /// </summary>
- public string TagName
- {
- get { return this.tagName; }
- set
- {
- if (value != this.tagName)
- {
- tagName = value;
- }
- }
- }
- private string pointValue = "0";
- /// <summary>
- /// 测点值
- /// </summary>
- public string PointValue
- {
- get { return this.pointValue; }
- set
- {
- if (value != this.pointValue)
- {
- pointValue = value;
- }
- }
- }
- private string uniformCode = "";
- /// <summary>
- /// 统一编码
- /// </summary>
- public string UniformCode
- {
- get { return this.uniformCode; }
- set
- {
- if (value != this.uniformCode)
- {
- uniformCode = value;
- }
- }
- }
- }
- }
|