Files
2-BeiqiFutian-MesProject/MisDataFunction/MesServer.Function/Function1060/OpcServer/HeartBeat.cs
2026-05-29 13:44:10 +08:00

45 lines
1.3 KiB
C#

using bizFacade;
using MesServerWork;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MesServerFunctions
{
partial class FunctionMES
{
/// <summary>
/// MES与PLC心跳监听
/// </summary>
/// <param name="OpName"></param>
/// <param name="tagValue"></param>
private void HeartBeat(object e)
{
try
{
DoWhatPlc.CustomeEvetnArgs msgEvent = (DoWhatPlc.CustomeEvetnArgs)e;
string OpName = Convert.ToString(msgEvent.OpName);
int tagValue = Convert.ToInt32(msgEvent.TagValue);
//返写在MES心跳中
//MIS_BASE.WritePLC(15, OpName, tagValue);
// 获取登录状态
if (tagValue == 1)
{
//DataTable tempDt;
//BaseDataSystemMES.Get_TempData(OpName, "登陆状态", out tempDt);
//if (tempDt.Rows.Count > 0) MIS_BASE.WritePLC(54, OpName, tempDt.Rows[0]["数值"]);
}
}
catch (Exception err)
{
////ApplicationLog.WriteLog(err, "Function02:FalseGO");
}
}
}
}