Files
14-PingZhi1550KV-MesProject/Common/07WebBusinessFacade/BusinessFacade/MES/BaseDataSystemMES.FalseOverGo.cs
2026-06-08 15:50:43 +08:00

35 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using DataLinkMesWork;
//using SystemFramework;
namespace bizFacade
{
public partial class BaseDataSystemMES
{
/// <summary>
/// 不合格放行
/// 不合格需要返修工位MES记录原因并将信息记录到需要不合格越过工位。
/// 工件到位读取发动机号后,读取不合格越过信息,
/// mes发送此信号到PLCplc接收此信号后才能不合格放行。
/// DBX2.5
/// 33
/// </summary>
/// <returns></returns>
//public static DataTable BaseData_tagTable_FalseOverGo(string opName)
//{
// DataTable dt;
// string sql;
// sql = "SELECT TagID,0 as TagValue,TagName,工位号,数据来源,TagTypeID,TagLong,列位置,测量位置,变量类型代码,测量项目,TagAdr,TagAdrDemo FROM [MES_基本变量_原始数据] "
// + " where 变量类型代码 = 33 and 是否启用 = 1 "
// + " and 工位号='" + opName + "'";
// DataAccess.ExecuteDataTable_OleDb_Access(sql, out dt);
// return dt;
//}
}
}