12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- 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 = "";
- /// <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.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;
- }
- }
- }
- }
- }
|