28 lines
974 B
C#
28 lines
974 B
C#
// ********************************************************************************
|
|
// 文件名字: Command.S2F31
|
|
// 文件描述: Command.S2F31
|
|
// 开发人员: Michael
|
|
// 创建时间: 2019/11/8 0:08
|
|
//
|
|
// 更新历史:
|
|
// + 创建 Command.S2F31.cs 文件. by Michael @2019/11/8 0:08
|
|
// ********************************************************************************
|
|
|
|
using Glorysoft.SECS.EQP.Message;
|
|
|
|
namespace Glorysoft.SECS.EQP.Commands
|
|
{
|
|
public partial class Command
|
|
{
|
|
public static void S2F31Command(S2F31Item item, object tag = null)
|
|
{
|
|
if (SimulatorInfo.Instance.Context != null && SimulatorInfo.Instance.Context.IsConnected)
|
|
{
|
|
var trans = SimulatorInfo.Instance.Context.GetTransaction(2, 31, "S2F31");
|
|
trans.Primary.Root.Value = item.TIME;
|
|
trans.Tag = tag;
|
|
SimulatorInfo.Instance.Context.SendMessage(trans);
|
|
}
|
|
}
|
|
}
|
|
} |