终端一体化运控平台
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.
 
 
 

69 lines
2.5 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.Academy._50L
  7. {
  8. public class DeviceStatus:NotifyBase
  9. {
  10. /// <summary>
  11. /// 旋转电机启停反馈
  12. /// </summary>
  13. public bool TurnMotor{get { return _turnMotor; }set { _turnMotor = value; OnPropertyChanged(); }}
  14. private bool _turnMotor;
  15. /// <summary>
  16. /// 负压风机启动反馈
  17. /// </summary>
  18. public bool Fans { get { return _fans; } set { _fans = value; OnPropertyChanged(); } }
  19. private bool _fans;
  20. /// <summary>
  21. /// 压缩空气进气阀反馈
  22. /// </summary>
  23. public bool InAir { get { return _inAir; } set { _inAir = value; OnPropertyChanged(); } }
  24. private bool _inAir;
  25. /// <summary>
  26. /// 排热空气阀反馈
  27. /// </summary>
  28. public bool OutAir { get { return _outAir; } set { _outAir = value; OnPropertyChanged(); } }
  29. private bool _outAir;
  30. /// <summary>
  31. /// 泄压阀反馈
  32. /// </summary>
  33. public bool RelivePre { get { return _relivePre; } set { _relivePre = value; OnPropertyChanged(); } }
  34. private bool _relivePre;
  35. /// <summary>
  36. /// 进冷却水阀反馈
  37. /// </summary>
  38. public bool InCold { get { return _inCold; } set { _inCold = value; OnPropertyChanged(); } }
  39. private bool _inCold;
  40. /// <summary>
  41. /// 出冷却水阀反馈
  42. /// </summary>
  43. public bool OutCold { get { return _outCold; } set { _outCold = value; OnPropertyChanged(); } }
  44. private bool _outCold;
  45. /// <summary>
  46. /// 蒸汽梳水阀反馈
  47. /// </summary>
  48. public bool CardWater { get { return _cardWater; } set { _cardWater = value; OnPropertyChanged(); } }
  49. private bool _cardWater;
  50. /// <summary>
  51. /// 冷凝水罐进水阀反馈
  52. /// </summary>
  53. public bool ColdPot { get { return _coldPot; } set { _coldPot = value; OnPropertyChanged(); } }
  54. private bool _coldPot;
  55. /// <summary>
  56. /// 称重水罐负压阀反馈
  57. /// </summary>
  58. public bool WeightPot { get { return _weightPot; } set { _weightPot = value; OnPropertyChanged(); } }
  59. private bool _weightPot;
  60. /// <summary>
  61. /// 反应釜原点位置反馈
  62. /// </summary>
  63. public bool OriginBit { get { return _originBit; } set { _originBit = value; OnPropertyChanged(); } }
  64. private bool _originBit;
  65. }
  66. }