using System;
//using SystemFramework;
namespace MesServerFunctions
{
partial class Functions_BASE_07
{
///
/// 申请上线
///
///
///
private void PartLoad(object e)
{
try
{
DoWhatPlc.CustomeEvetnArgs msgEvent = (DoWhatPlc.CustomeEvetnArgs)e;
string OpName = Convert.ToString(msgEvent.OpName);
int tagValue = Convert.ToInt32(msgEvent.TagValue);
if (tagValue == 1)
{
AsyncSendMessage_Notice(OpName, "请扫描返修件条码!");
}
}
catch (Exception err)
{
////ApplicationLog.WriteLog(err, "Function07:PartLoad");
}
}
}
}