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.

28 regels
952 B

  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 System;
  11. using ARI.EAP.HOST;
  12. using Glorysoft.SECS.EQP.Utilities;
  13. namespace Glorysoft.SECS.EQP.Commands
  14. {
  15. public static partial class Command
  16. {
  17. public static void S1F13Command(object tag = null)
  18. {
  19. var trans = SimulatorInfo.Instance.Context?.GetTransaction(1, 13, "S1F13");
  20. trans.Tag = tag;
  21. SimulatorInfo.Instance.Context?.SendMessage(trans);
  22. Global.MF.addlog(trans, LoggerService.Send, trans.Primary.Description, 0);
  23. LoggerService.SECSLogger.Info(trans.Primary);
  24. }
  25. }
  26. }