22 lines
729 B
C#
22 lines
729 B
C#
|
// ********************************************************************************
|
|||
|
// 文件名字: Command.S1F1
|
|||
|
// 文件描述: Command.S1F1
|
|||
|
// 开发人员: Michael
|
|||
|
// 创建时间: 2019/11/8 0:08
|
|||
|
//
|
|||
|
// 更新历史:
|
|||
|
// + 创建 Command.S1F1.cs 文件. by Michael @2019/11/8 0:08
|
|||
|
// ********************************************************************************
|
|||
|
|
|||
|
namespace Glorysoft.SECS.EQP.Commands
|
|||
|
{
|
|||
|
public static partial class Command
|
|||
|
{
|
|||
|
public static void S1F1Command(object tag = null)
|
|||
|
{
|
|||
|
var trans = SimulatorInfo.Instance.Context.GetTransaction(1, 1, "S1F1");
|
|||
|
trans.Tag = tag;
|
|||
|
SimulatorInfo.Instance.Context?.SendMessage(trans);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|