DIReservoirInitializeRoutine.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. using Aitex.Core.RT.Device;
  2. using Aitex.Core.RT.Routine;
  3. using Aitex.Core.RT.SCCore;
  4. using MECF.Framework.Common.Routine;
  5. using PunkHPX8_Core;
  6. using PunkHPX8_RT.Devices.PlatingCell;
  7. using PunkHPX8_RT.Devices.Reservoir;
  8. using PunkHPX8_RT.Devices.Temperature;
  9. using System;
  10. using System.Collections.Generic;
  11. using System.Linq;
  12. using System.Reflection;
  13. using System.Text;
  14. using System.Threading.Tasks;
  15. namespace PunkHPX8_RT.Modules.Reservoir
  16. {
  17. public class DIReservoirInitializeRoutine : RoutineBase, IRoutine
  18. {
  19. /// <summary>
  20. /// 构造函数
  21. /// </summary>
  22. /// <param name="module"></param>
  23. public DIReservoirInitializeRoutine(string module) : base(module)
  24. {
  25. }
  26. /// <summary>
  27. /// 启动
  28. /// </summary>
  29. /// <param name="objs"></param>
  30. /// <returns></returns>
  31. public RState Start(params object[] objs)
  32. {
  33. return RState.End;
  34. }
  35. /// <summary>
  36. /// 监控
  37. /// </summary>
  38. /// <returns></returns>
  39. public RState Monitor()
  40. {
  41. return RState.End;
  42. }
  43. /// <summary>
  44. /// 中止
  45. /// </summary>
  46. public void Abort()
  47. {
  48. }
  49. }
  50. }