You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.Academy._50L
- {
- public class DeviceStatus:NotifyBase
- {
- /// <summary>
- /// 旋转电机启停反馈
- /// </summary>
- public bool TurnMotor{get { return _turnMotor; }set { _turnMotor = value; OnPropertyChanged(); }}
- private bool _turnMotor;
- /// <summary>
- /// 负压风机启动反馈
- /// </summary>
- public bool Fans { get { return _fans; } set { _fans = value; OnPropertyChanged(); } }
- private bool _fans;
- /// <summary>
- /// 压缩空气进气阀反馈
- /// </summary>
- public bool InAir { get { return _inAir; } set { _inAir = value; OnPropertyChanged(); } }
- private bool _inAir;
- /// <summary>
- /// 排热空气阀反馈
- /// </summary>
- public bool OutAir { get { return _outAir; } set { _outAir = value; OnPropertyChanged(); } }
- private bool _outAir;
- /// <summary>
- /// 泄压阀反馈
- /// </summary>
- public bool RelivePre { get { return _relivePre; } set { _relivePre = value; OnPropertyChanged(); } }
- private bool _relivePre;
- /// <summary>
- /// 进冷却水阀反馈
- /// </summary>
- public bool InCold { get { return _inCold; } set { _inCold = value; OnPropertyChanged(); } }
- private bool _inCold;
- /// <summary>
- /// 出冷却水阀反馈
- /// </summary>
- public bool OutCold { get { return _outCold; } set { _outCold = value; OnPropertyChanged(); } }
- private bool _outCold;
- /// <summary>
- /// 蒸汽梳水阀反馈
- /// </summary>
- public bool CardWater { get { return _cardWater; } set { _cardWater = value; OnPropertyChanged(); } }
- private bool _cardWater;
- /// <summary>
- /// 冷凝水罐进水阀反馈
- /// </summary>
- public bool ColdPot { get { return _coldPot; } set { _coldPot = value; OnPropertyChanged(); } }
- private bool _coldPot;
- /// <summary>
- /// 称重水罐负压阀反馈
- /// </summary>
- public bool WeightPot { get { return _weightPot; } set { _weightPot = value; OnPropertyChanged(); } }
- private bool _weightPot;
- /// <summary>
- /// 反应釜原点位置反馈
- /// </summary>
- public bool OriginBit { get { return _originBit; } set { _originBit = value; OnPropertyChanged(); } }
- private bool _originBit;
-
- }
- }
|