34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
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);
|
|
|
|
}
|
|
}
|
|
}
|