29 rindas
949 B
C#
29 rindas
949 B
C#
// ********************************************************************************
|
|
// 文件名字: Command.S1F17
|
|
// 文件描述: Command.S1F17
|
|
// 开发人员: Hupe
|
|
// 创建时间: 2021/4/19 15:35
|
|
//
|
|
// 更新历史:
|
|
// + 创建 Command.S1F17.cs 文件. by Hupe @2021/4/19 15:35
|
|
// ********************************************************************************
|
|
using ARI.EAP.HOST;
|
|
using Glorysoft.SECS.EQP.Utilities;
|
|
using System;
|
|
|
|
namespace Glorysoft.SECS.EQP.Commands
|
|
{
|
|
public static partial class Command
|
|
{
|
|
public static void S1F17Command(object tag = null)
|
|
{
|
|
|
|
var trans = SimulatorInfo.Instance.Context?.GetTransaction(1, 17, "S1F17");
|
|
trans.Tag = tag;
|
|
|
|
SimulatorInfo.Instance.Context?.SendMessage(trans);
|
|
Global.MF.addlog(trans, LoggerService.Send, trans.Primary.Description, 0);
|
|
LoggerService.SECSLogger.Info(trans.Primary);
|
|
}
|
|
}
|
|
} |