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

48 lines
1014 B

  1. using BPA.Message.Enum;
  2. using BPASmartClient.Device;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPASmartClient.TourismCollege
  9. {
  10. public class Control_MorkCL : BaseDevice
  11. {
  12. public override DeviceClientType DeviceType => DeviceClientType.MORKCL;
  13. GVL_MorkCL morkCL = new GVL_MorkCL();
  14. Alarm alarm = new Alarm();
  15. public override void DoMain()
  16. {
  17. MonitorViewModel.DeviceId = DeviceId;
  18. }
  19. public override void MainTask()
  20. {
  21. throw new NotImplementedException();
  22. }
  23. public override void ReadData()
  24. {
  25. throw new NotImplementedException();
  26. }
  27. public override void ResetProgram()
  28. {
  29. morkCL = null;
  30. morkCL = new GVL_MorkCL();
  31. }
  32. public override void SimOrder()
  33. {
  34. }
  35. public override void Stop()
  36. {
  37. }
  38. }
  39. }