dc/Commands/Command.S6F23.cs

29 lines
952 B
C#
Raw Normal View History

2022-04-01 17:03:54 +08:00
// ********************************************************************************
// 文件名字: Command.S6F23
// 文件描述: Command.S6F23
// 开发人员: Michael
// 创建时间: 2021/4/14 16:12
//
// 更新历史:
// + 创建 Command.S6F23.cs 文件. by Hupe @2021/4/14 16:12
// ********************************************************************************
using ARI.EAP.HOST;
using Glorysoft.SECS.EQP.Utilities;
using System;
namespace Glorysoft.SECS.EQP.Commands
{
public static partial class Command
{
public static void S6F23Command(object tag = null)
{
var trans = SimulatorInfo.Instance.Context?.GetTransaction(6, 23, "S6F23");
trans.Tag = tag;
SimulatorInfo.Instance.Context?.SendMessage(trans);
2022-12-16 13:01:24 +08:00
Global.MF.addlog(trans, LoggerService.Send, trans.Primary.Description, 0);
2022-04-01 17:03:54 +08:00
LoggerService.SECSLogger.Info(trans.Primary);
}
}
}