You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
516 lines
18 KiB
516 lines
18 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Text;
|
|
using System.Linq;
|
|
using QMFrameWork.Data;
|
|
using QMAPP.Entity;
|
|
using QMAPP.FJC.Entity.QT;
|
|
|
|
namespace QMAPP.FJC.DAL.QT
|
|
{
|
|
/// <summary>
|
|
/// 模块名称:数据采集缓存
|
|
/// 作 者:张鹏
|
|
/// 编写日期:2017年08月31日
|
|
/// </summary>
|
|
public class DAICacheDAL
|
|
{
|
|
|
|
#region 获取信息
|
|
/// <summary>
|
|
/// 获取信息
|
|
/// </summary>
|
|
/// <param name="">条件</param>
|
|
/// <returns>*信息</returns>
|
|
public DAICache Get(DAICache info)
|
|
{
|
|
try
|
|
{
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
//获取信息
|
|
info = session.Get<DAICache>(info);
|
|
}
|
|
return info;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
public DAICache GetByValue(string davalue)
|
|
{
|
|
StringBuilder sql = new StringBuilder();
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
try
|
|
{
|
|
sql.AppendLine("SELECT DC.* ");
|
|
sql.AppendLine(" ,WL.[WORKLOC_NAME] ");
|
|
sql.AppendLine(" ,DA.[DA_NAME] ");
|
|
sql.AppendLine(" ,DA.[EQUIPMENT_CODE] ");
|
|
sql.AppendLine(" ,DA.[DIVBY_MOULD] ");
|
|
sql.AppendLine(" FROM [T_QT_DAI_CACHE] AS DC ");
|
|
sql.AppendLine(" LEFT JOIN [T_QT_DAI] AS DA ");
|
|
sql.AppendLine(" ON DC.[DA_CODE]=DA.[DA_CODE] ");
|
|
sql.AppendLine(" AND DC.[WORKCELL_CODE]=DA.[WORKCELL_CODE] ");
|
|
|
|
sql.AppendLine(" LEFT JOIN [T_MD_WORKLOC] AS WL ");
|
|
sql.AppendLine(" ON WL.[WORKLOC_CODE]=DC.[WORKLOC_CODE] ");
|
|
|
|
sql.AppendLine(" WHERE DC.[DA_VALUE]=@davalue ");
|
|
sql.AppendLine(" ORDER BY DC.[DA_SEQ]");
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
parameters.Add(new DataParameter("davalue", davalue));
|
|
return session.Get<DAICache>(sql.ToString(), parameters.ToArray());
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region 获取列表
|
|
/// <summary>
|
|
/// 获取列表
|
|
/// </summary>
|
|
/// <param name="condition">条件</param>
|
|
/// <param name="page">数据页</param>
|
|
/// <returns>数据页</returns>
|
|
public DataPage GetList(DAICache condition, DataPage page)
|
|
{
|
|
string sql = null;
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
try
|
|
{
|
|
sql = this.GetQuerySql(condition, ref parameters);
|
|
//分页关键字段及排序
|
|
page.KeyName = "PID";
|
|
if (string.IsNullOrEmpty(page.SortExpression))
|
|
page.SortExpression = "UPDATEDATE DESC";
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
page = session.GetDataPage<DAICache>(sql, parameters.ToArray(), page);
|
|
}
|
|
return page;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 加载采集数据缓存
|
|
/// </summary>
|
|
/// <param name="workcellcode"></param>
|
|
/// <param name="workloccode"></param>
|
|
/// <returns></returns>
|
|
public List<DAICache> GetList(string workcellcode, string workloccode,string mouldcode)
|
|
{
|
|
StringBuilder sql = new StringBuilder();
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
try
|
|
{
|
|
sql.AppendLine("SELECT DC.* ");
|
|
sql.AppendLine(" ,M.[MATERIAL_SHORT] AS [MATERIAL_NAME] ");
|
|
sql.AppendLine(" ,DA.[DA_NAME] ");
|
|
sql.AppendLine(" ,DA.[EQUIPMENT_CODE] ");
|
|
sql.AppendLine(" ,DA.[DIVBY_MOULD] ");
|
|
sql.AppendLine(" FROM [T_QT_DAI_CACHE] AS DC WITH(NOLOCK) ");
|
|
sql.AppendLine(" LEFT JOIN [T_QT_DAI] AS DA WITH(NOLOCK) ");
|
|
sql.AppendLine(" ON DC.[DA_CODE]=DA.[DA_CODE] ");
|
|
sql.AppendLine(" AND DC.[WORKCELL_CODE]=DA.[WORKCELL_CODE] ");
|
|
sql.AppendLine(" LEFT JOIN [T_MD_MATERIAL] AS M WITH(NOLOCK) ");
|
|
sql.AppendLine(" ON DC.[MATERIAL_CODE]=M.[MATERIAL_CODE] ");
|
|
sql.AppendLine(" WHERE DC.[WORKCELL_CODE]=@workcellcode ");
|
|
sql.AppendLine(" AND DC.[WORKLOC_CODE]=@workloccode ");
|
|
if (!string.IsNullOrWhiteSpace(mouldcode))
|
|
{
|
|
sql.AppendLine(" AND (DC.[MOULD_CODE]=@mouldcode OR ISNULL(DA.[DIVBY_MOULD],'0')='0' OR ISNULL(DC.[PREINPUT],'0')='1') ");
|
|
}
|
|
sql.AppendLine(" ORDER BY DC.[DA_SEQ]");
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
parameters.Add(new DataParameter("workcellcode", workcellcode));
|
|
parameters.Add(new DataParameter("workloccode", workloccode));
|
|
if (!string.IsNullOrWhiteSpace(mouldcode))
|
|
{
|
|
parameters.Add(new DataParameter("mouldcode", mouldcode));
|
|
}
|
|
return session.GetList<DAICache>(sql.ToString(), parameters.ToArray()).ToList();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 加载采集数据缓存
|
|
/// </summary>
|
|
/// <param name="workcellcode"></param>
|
|
/// <param name="workloccode"></param>
|
|
/// <returns></returns>
|
|
public List<DAICache> GetList(string workcellcode, string workloccode)
|
|
{
|
|
StringBuilder sql = new StringBuilder();
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
try
|
|
{
|
|
sql.AppendLine("SELECT DC.* ");
|
|
sql.AppendLine(" ,M.[MATERIAL_SHORT] AS [MATERIAL_NAME] ");
|
|
sql.AppendLine(" ,DA.[DA_NAME] ");
|
|
sql.AppendLine(" ,DA.[EQUIPMENT_CODE] ");
|
|
sql.AppendLine(" ,DA.[DIVBY_MOULD] ");
|
|
sql.AppendLine(" FROM [T_QT_DAI_CACHE] AS DC ");
|
|
sql.AppendLine(" LEFT JOIN [T_QT_DAI] AS DA ");
|
|
sql.AppendLine(" ON DC.[DA_CODE]=DA.[DA_CODE] ");
|
|
sql.AppendLine(" AND DC.[WORKCELL_CODE]=DA.[WORKCELL_CODE] ");
|
|
sql.AppendLine(" LEFT JOIN [T_MD_MATERIAL] AS M ");
|
|
sql.AppendLine(" ON DC.[MATERIAL_CODE]=M.[MATERIAL_CODE] ");
|
|
sql.AppendLine(" WHERE DC.[WORKCELL_CODE]=@workcellcode ");
|
|
sql.AppendLine(" AND DC.[WORKLOC_CODE]=@workloccode ");
|
|
sql.AppendLine(" ORDER BY DC.[DA_SEQ]");
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
parameters.Add(new DataParameter("workcellcode", workcellcode));
|
|
parameters.Add(new DataParameter("workloccode", workloccode));
|
|
return session.GetList<DAICache>(sql.ToString(), parameters.ToArray()).ToList();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 加载指定工位采集数据缓存
|
|
/// </summary>
|
|
/// <param name="workloccode"></param>
|
|
/// <returns></returns>
|
|
public List<DAICache> GetList(string workloccode)
|
|
{
|
|
StringBuilder sql = new StringBuilder();
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
try
|
|
{
|
|
sql.AppendLine("SELECT DC.* ");
|
|
sql.AppendLine(" ,M.[MATERIAL_SHORT] AS [MATERIAL_NAME] ");
|
|
sql.AppendLine(" ,DA.[DA_NAME] ");
|
|
sql.AppendLine(" ,DA.[EQUIPMENT_CODE] ");
|
|
sql.AppendLine(" ,DA.[DIVBY_MOULD] ");
|
|
|
|
sql.AppendLine(" ,PR.[CAPACITY] ");
|
|
sql.AppendLine(" ,PR.[USINGCOUNT] ");
|
|
|
|
sql.AppendLine(" FROM [T_QT_DAI_CACHE] AS DC ");
|
|
sql.AppendLine(" LEFT JOIN [T_QT_DAI] AS DA ");
|
|
sql.AppendLine(" ON DC.[DA_CODE]=DA.[DA_CODE] ");
|
|
sql.AppendLine(" AND DC.[WORKCELL_CODE]=DA.[WORKCELL_CODE] ");
|
|
|
|
sql.AppendLine(" LEFT JOIN [T_AW_PRODUCT] AS PR ");
|
|
sql.AppendLine(" ON DC.[DA_VALUE]=PR.[PRODUCTCODE] ");
|
|
|
|
sql.AppendLine(" LEFT JOIN [T_MD_MATERIAL] AS M ");
|
|
sql.AppendLine(" ON DC.[MATERIAL_CODE]=M.[MATERIAL_CODE] ");
|
|
|
|
sql.AppendLine(" WHERE DC.[WORKLOC_CODE]=@workloccode ");
|
|
sql.AppendLine(" ORDER BY DC.[DA_SEQ]");
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
parameters.Add(new DataParameter("workloccode", workloccode));
|
|
return session.GetList<DAICache>(sql.ToString(), parameters.ToArray()).ToList();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 获取查询语句
|
|
/// <summary>
|
|
/// 获取查询语句
|
|
/// </summary>
|
|
/// <param name="user">查询条件</param>
|
|
/// <param name="parameters">参数</param>
|
|
/// <returns>查询语句</returns>
|
|
private string GetQuerySql(DAICache condition, ref List<DataParameter> parameters)
|
|
{
|
|
StringBuilder sqlBuilder = new StringBuilder();
|
|
StringBuilder whereBuilder = new StringBuilder();
|
|
try
|
|
{
|
|
//构成查询语句
|
|
sqlBuilder.Append("SELECT PID,WORKCELL_CODE,WORKLOC_CODE,DA_CODE,MATERIAL_TYPE,MATERIAL_CODE,DATA_TYPE,STATE_CODE,DA_SEQ,DA_STATE,DA_VALUE,UPDATEDATE ");
|
|
sqlBuilder.Append("FROM T_QT_DAI_CACHE ");
|
|
//查询条件
|
|
if (whereBuilder.Length > 0)
|
|
{
|
|
sqlBuilder.Append(" WHERE " + whereBuilder.ToString().Substring(4));
|
|
}
|
|
return sqlBuilder.ToString();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 获取导出的数据
|
|
/// <summary>
|
|
/// 获取导出的数据
|
|
/// </summary>
|
|
/// <param name="user">查询条件</param>
|
|
/// <returns>数据</returns>
|
|
public DataTable GetExportData(DAICache info)
|
|
{
|
|
DataTable dt = null;
|
|
string sql = null;
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
try
|
|
{
|
|
//构成查询语句
|
|
sql = this.GetQuerySql(info, ref parameters);
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
dt = session.GetTable(sql, parameters.ToArray());
|
|
dt.TableName = "DAICache";
|
|
}
|
|
return dt;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 信息是否重复
|
|
/// <summary>
|
|
/// 判断名称是否存在
|
|
/// </summary>
|
|
/// <param name="info"></param>
|
|
/// <returns>true:已存在;fasel:不存在。</returns>
|
|
public bool Exists(DAICache info)
|
|
{
|
|
StringBuilder sqlBuilder = new StringBuilder();
|
|
StringBuilder whereBuilder = new StringBuilder();
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
int count = 0;
|
|
try
|
|
{
|
|
sqlBuilder.Append("SELECT COUNT(0) FROM T_QT_DAI_CACHE");
|
|
if (info.PID == null)
|
|
{
|
|
info.PID = "";
|
|
}
|
|
whereBuilder.Append(" AND PID <> @PID ");
|
|
parameters.Add(new DataParameter { ParameterName = "PID", DataType = DbType.String, Value = info.PID });
|
|
|
|
//添加进行无重复字段判断代码
|
|
|
|
if (whereBuilder.Length > 0)
|
|
{
|
|
sqlBuilder.Append(" WHERE " + whereBuilder.ToString().Substring(4));
|
|
}
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
count = Convert.ToInt32(session.ExecuteSqlScalar(sqlBuilder.ToString(), parameters.ToArray()));
|
|
}
|
|
return count > 0;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 插入信息
|
|
/// <summary>
|
|
/// 插入信息(单表)
|
|
/// </summary>
|
|
/// <param name="">信息</param>
|
|
/// <returns>插入行数</returns>
|
|
public int Insert(DAICache info)
|
|
{
|
|
int count = 0;
|
|
try
|
|
{
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
//插入基本信息
|
|
count = session.Insert<DAICache>(info);
|
|
}
|
|
return count;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 插入列表
|
|
/// </summary>
|
|
/// <param name="list"></param>
|
|
/// <returns></returns>
|
|
public int Insert(List<DAICache> list)
|
|
{
|
|
int count = 0;
|
|
try
|
|
{
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
//插入基本信息
|
|
count = session.Insert<DAICache>(list);
|
|
}
|
|
return count;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 更新信息
|
|
/// <summary>
|
|
/// 更新信息
|
|
/// </summary>
|
|
/// <param name=""></param>
|
|
/// <returns>更新行数</returns>
|
|
public int Update(DAICache info)
|
|
{
|
|
int count = 0;
|
|
try
|
|
{
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
//更新基本信息
|
|
count = session.Update<DAICache>(info);
|
|
}
|
|
return count;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 更新信息(事务)
|
|
/// </summary>
|
|
/// <param name=""></param>
|
|
/// <returns>更新行数</returns>
|
|
public int Update(DAICache info,IDataSession session)
|
|
{
|
|
int count = 0;
|
|
try
|
|
{
|
|
//更新基本信息
|
|
count = session.Update<DAICache>(info);
|
|
return count;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 批量更新数据(事务)
|
|
/// </summary>
|
|
/// <param name="list">数据列表</param>
|
|
/// <param name="session">数据会话</param>
|
|
/// <returns></returns>
|
|
public int Update(List<DAICache> list,IDataSession session)
|
|
{
|
|
int count = 0;
|
|
try
|
|
{
|
|
//更新基本信息
|
|
count = session.Update<DAICache>(list);
|
|
return count;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 删除
|
|
/// <summary>
|
|
/// 删除信息
|
|
/// </summary>
|
|
/// <param name=""></param>
|
|
/// <returns>删除个数</returns>
|
|
public int Delete(DAICache info)
|
|
{
|
|
int count = 0;
|
|
try
|
|
{
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
//删除基本信息
|
|
count = session.Delete<DAICache>(info);
|
|
}
|
|
return count;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 导入
|
|
public ImportMessage GetImportData(List<DAICache> list)
|
|
{
|
|
ImportMessage em = new ImportMessage();
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
try
|
|
{
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
//设置祖先对象数据会话
|
|
session.OpenTs();
|
|
foreach (DAICache info in list)
|
|
{
|
|
if (info.IsNewInfo)
|
|
{
|
|
//插入信息
|
|
int count = session.Insert<DAICache>(info);
|
|
em.insertNum++;
|
|
}
|
|
else
|
|
{
|
|
//更新信息
|
|
int count = session.Update<DAICache>(info);
|
|
em.updateNum++;
|
|
}
|
|
}
|
|
session.CommitTs();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
return em;
|
|
}
|
|
#endregion
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|