46 lines
999 B
C#
46 lines
999 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Data.SqlClient;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MesWork
|
|
{
|
|
public partial class QingYa_OP0010 { }
|
|
public partial class MesWorkForm
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="_Msg"></param>
|
|
public void LoadClientInfo(object _Msg)
|
|
{
|
|
try
|
|
{
|
|
string recStr = (string)_Msg;
|
|
string m_Source = recStr.Split('|')[0];
|
|
string cmd = recStr.Split('|')[1];
|
|
//string OpName = recStr.Split('|')[2];
|
|
//string tagValue = recStr.Split('|')[3];
|
|
|
|
switch (m_Source)
|
|
{
|
|
case "DT":
|
|
break;
|
|
case "MES":
|
|
break;
|
|
}
|
|
|
|
}
|
|
catch (Exception err) { }
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|