chore: 初始化东安动力MES采集程序

This commit is contained in:
yexingqiang
2026-05-29 13:57:19 +08:00
commit b5c49a5d86
1121 changed files with 168795 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
using System;
using System.Data;
using System.Data.SqlClient;
using DataLinkMesWork;
using System.Collections;
using System.Collections.Specialized;
//using SystemFramework;
namespace bizFacade
{
/// <summary>
///
/// </summary>
public partial class BaseDataSystemMES
{
/// <summary>
/// 测量数据合格_返修工位_查询
/// </summary>
/// <param name="engineID"></param>
/// <param name="opName"></param>
/// <param name="dt"></param>
static public void GetOpNameRepairData(string engineID,string opName,out DataTable dt)
{
string procedureName;
procedureName = "测量数据合格_返修工位_查询";
SqlParameter[] thisParmsSql = new SqlParameter[2];
thisParmsSql[0] = new SqlParameter("@EngineID", engineID);
thisParmsSql[1] = new SqlParameter("@工位号", opName);
DataAccess.ExecuteStoredProcedure(procedureName, ref thisParmsSql, out dt);
}
}
}