選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

29 行
952 B

  1. // ********************************************************************************
  2. // 文件名字: Command.S6F23
  3. // 文件描述: Command.S6F23
  4. // 开发人员: Michael
  5. // 创建时间: 2021/4/14 16:12
  6. //
  7. // 更新历史:
  8. // + 创建 Command.S6F23.cs 文件. by Hupe @2021/4/14 16:12
  9. // ********************************************************************************
  10. using ARI.EAP.HOST;
  11. using Glorysoft.SECS.EQP.Utilities;
  12. using System;
  13. namespace Glorysoft.SECS.EQP.Commands
  14. {
  15. public static partial class Command
  16. {
  17. public static void S6F23Command(object tag = null)
  18. {
  19. var trans = SimulatorInfo.Instance.Context?.GetTransaction(6, 23, "S6F23");
  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. }