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

37 lines
714 B

  1. using BPASmartClient.Device;
  2. using BPASmartClient.Peripheral;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPASmartClient.MorkT
  9. {
  10. public class Device_MorkT : BaseDevice
  11. {
  12. public override global::BPA.Message.Enum.DeviceClientType DeviceType { get { return BPA.Message.Enum.DeviceClientType.MORKIC; } }
  13. public override void DoMain()
  14. {
  15. }
  16. public override void MainTask()
  17. {
  18. }
  19. public override void ReadData()
  20. {
  21. }
  22. public override void ResetProgram()
  23. {
  24. }
  25. public override void Stop()
  26. {
  27. }
  28. }
  29. }