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.

36 line
1.1 KiB

  1. // ********************************************************************************
  2. // 文件名字: Command.S1F13
  3. // 文件描述: Command.S1F13
  4. // 开发人员: Michael
  5. // 创建时间: 2019/11/8 0:08
  6. //
  7. // 更新历史:
  8. // + 创建 Command.S1F13.cs 文件. by Michael @2019/11/8 0:08
  9. // ********************************************************************************
  10. using ARI.EAP.HOST;
  11. using Glorysoft.SECS.EQP.Utilities;
  12. using System;
  13. using System.Windows.Forms;
  14. namespace Glorysoft.SECS.EQP.Commands
  15. {
  16. public static partial class Command
  17. {
  18. public static void S5F5Command(object tag = null)
  19. {
  20. try
  21. {
  22. var trans = SimulatorInfo.Instance.Context?.GetTransaction(5, 5, "S5F5");
  23. trans.Tag = tag;
  24. SimulatorInfo.Instance.Context?.SendMessage(trans);
  25. Global.MF.addlog(trans, LoggerService.Send, trans.Primary.Description, 0);
  26. LoggerService.SECSLogger.Info(trans.Primary);
  27. }
  28. catch(Exception e)
  29. {
  30. LoggerService.SYSLogger.Error(e);
  31. }
  32. }
  33. }
  34. }