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

84 lines
4.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.Model
  7. {
  8. public class DeviceCtrl:NotifyBase
  9. {
  10. public bool M101 { get { return _m101; } set { _m101 = value;OnPropertyChanged(); } }
  11. private bool _m101 = false;
  12. private int myVar;
  13. public int MyProperty
  14. {
  15. get { return myVar; }
  16. set { myVar = value; }
  17. }
  18. public bool IsConnect { get { return _isConnect; } set { _isConnect = value; OnPropertyChanged(); } }
  19. private bool _isConnect = false;
  20. public bool M102 { get { return _m102; } set { _m102 = value; OnPropertyChanged(); } }
  21. private bool _m102 = false;
  22. public bool M103 { get { return _m103; } set { _m103 = value; OnPropertyChanged(); } }
  23. private bool _m103 = false;
  24. public bool VX100 { get { return _vx100; } set { _vx100 = value; OnPropertyChanged(); } }
  25. private bool _vx100 = false;
  26. public bool VX101 { get { return _vx101; } set { _vx101 = value; OnPropertyChanged(); } }
  27. private bool _vx101 = false;
  28. public bool VX102 { get { return _vx102; } set { _vx102 = value; OnPropertyChanged(); } }
  29. private bool _vx102 = false;
  30. public bool VX103 { get { return _vx103; } set { _vx103 = value; OnPropertyChanged(); } }
  31. private bool _vx103 = false;
  32. public bool VX104 { get { return _vx104; } set { _vx104 = value; OnPropertyChanged(); } }
  33. private bool _vx104 = false;
  34. public bool VX105 { get { return _vx100; } set { _vx100 = value; OnPropertyChanged(); } }
  35. private bool _vx105 = false;
  36. public bool VX106 { get { return _vx106; } set { _vx106 = value; OnPropertyChanged(); } }
  37. private bool _vx106 = false;
  38. public bool VX107 { get { return _vx107; } set { _vx107 = value; OnPropertyChanged(); } }
  39. private bool _vx107 = false;
  40. public bool VX108 { get { return _vx108; } set { _vx108 = value; OnPropertyChanged(); } }
  41. private bool _vx108 = false;
  42. public bool VX109 { get { return _vx109; } set { _vx109 = value; OnPropertyChanged(); } }
  43. private bool _vx109 = false;
  44. public bool VX110 { get { return _vx110; } set { _vx110 = value; OnPropertyChanged(); } }
  45. private bool _vx110 = false;
  46. public bool VX111 { get { return _vx111; } set { _vx111 = value; OnPropertyChanged(); } }
  47. private bool _vx111 = false;
  48. public bool VX112 { get { return _vx112; } set { _vx112 = value; OnPropertyChanged(); } }
  49. private bool _vx112 = false;
  50. public bool VX113 { get { return _vx113; } set { _vx113 = value; OnPropertyChanged(); } }
  51. private bool _vx113 = false;
  52. public bool VX114 { get { return _vx114; } set { _vx114 = value; OnPropertyChanged(); } }
  53. private bool _vx114 = false;
  54. public bool VX115 { get { return _vx115; } set { _vx115 = value; OnPropertyChanged(); } }
  55. private bool _vx115 = false;
  56. public int TempWok { get { return _tempWok; } set { _tempWok = value; OnPropertyChanged(); } }
  57. private int _tempWok;
  58. public int TempMaterial { get { return _tempMaterial; } set { _tempMaterial = value; OnPropertyChanged(); } }
  59. private int _tempMaterial;
  60. public float WeightWok { get { return _weightWok; } set { _weightWok = value; OnPropertyChanged(); } }
  61. private float _weightWok;
  62. public int TempVent { get { return _tempVent; } set { _tempVent = value; OnPropertyChanged(); } }
  63. private int _tempVent;
  64. public float PressureWok { get { return _pressureWok; } set { _pressureWok = value; OnPropertyChanged(); } }
  65. private float _pressureWok;
  66. public float PressureWeek { get { return _pressureWeek; } set { _pressureWeek = value; OnPropertyChanged(); } }
  67. private float _pressureWeek;
  68. public float OpenValue { get { return _openValue; } set { _openValue = value; OnPropertyChanged(); } }
  69. private float _openValue;
  70. public bool Compressor { get { return _compressor; } set { _compressor = value; OnPropertyChanged(); } }
  71. private bool _compressor = false;
  72. public bool ByPassMaterial { get { return _byPassMaterial; } set { _byPassMaterial = value; OnPropertyChanged(); } }
  73. private bool _byPassMaterial = false;
  74. public bool ByPassReact { get { return _byPassReact; } set { _byPassReact = value; OnPropertyChanged(); } }
  75. private bool _byPassReact = false;
  76. }
  77. }