40 lines
1.5 KiB
C#
40 lines
1.5 KiB
C#
// ********************************************************************************
|
|
// 文件名字: Command.S2F41
|
|
// 文件描述: Command.S2F41
|
|
// 开发人员: Michael
|
|
// 创建时间: 2019/11/8 0:08
|
|
//
|
|
// 更新历史:
|
|
// + 创建 Command.S2F41.cs 文件. by Michael @2019/11/8 0:08
|
|
// ********************************************************************************
|
|
|
|
using Glorysoft.SECS.EQP.Message;
|
|
using Glorysoft.SECS.EQP.Utilities;
|
|
using Glorysoft.SECSwell;
|
|
|
|
namespace Glorysoft.SECS.EQP.Commands
|
|
{
|
|
public partial class Command
|
|
{
|
|
public static void S2F41Command(S2F41Item items, object tag = null)
|
|
{
|
|
if (SimulatorInfo.Instance.Context != null && SimulatorInfo.Instance.Context.IsConnected)
|
|
{
|
|
var trans = SimulatorInfo.Instance.Context.GetTransaction(2, 41, "S2F41");
|
|
trans.Primary.Root.Item(1).Value = items.RCMD;
|
|
if (items.CPNAME != null)
|
|
{
|
|
var li = SECSUtil.CreateSECSItem("", eSECS_FORMAT.LIST);
|
|
li.Add(SECSUtil.CreateSECSItem("CPNAME", eSECS_FORMAT.ASCII, items.CPNAME));
|
|
li.Add(SECSUtil.CreateSECSItem("CPVAL", items.CPVAL.GetSECS_FORMAT(), items.CPVAL));
|
|
trans.Primary.Root.Item(2).Add(li);
|
|
}
|
|
if (items.CPVAL != null)
|
|
{
|
|
}
|
|
trans.Tag = tag;
|
|
SimulatorInfo.Instance.Context.SendMessage(trans);
|
|
}
|
|
}
|
|
}
|
|
} |