using BPA.Helper; namespace BPASmartClient.FoodStationTest.Model.GVL { /// /// PLC变量信息 /// public class PlcInfos : NotifyBase { /// /// 变量序号 /// public int Count { get { return _Count; } set { _Count = value; OnPropertyChanged(); } } private int _Count { get; set; } /// /// 变量名称 /// public string Name { get { return _Name; } set { _Name = value; OnPropertyChanged(); } } private string _Name { get; set; } /// /// 变量地址 /// public string Address { get { return _Address; } set { _Address = value; OnPropertyChanged(); } } private string _Address { get; set; } /// /// 变量类型 /// public string Type { get { return _Type; } set { _Type = value; OnPropertyChanged(); } } private string _Type { get; set; } /// /// 变量描述 /// public string Describe { get { return _Describe; } set { _Describe = value; OnPropertyChanged(); } } private string _Describe { get; set; } /// /// 变量值 /// public string Value { get { return _Value; } set { _Value = value; OnPropertyChanged(); } } private string _Value { get; set; } } }