using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using QMAPP.DAL;
using QMAPP.MD.Entity;
using QMFrameWork.Data;
using System.Data;
using QMAPP.FJC.Entity.Basic;
namespace QMAPP.MD.DAL
{
///
/// 模块名称:加工参数
/// 作 者:来洋
/// 编写日期:2018年03月30日
///
public class ParameterConfigEntityDAL : BaseDAL
{
#region 获取信息
///
/// 获取信息
///
/// 条件
/// 信息
public ParameterConfigEntity Get(ParameterConfigEntity model)
{
string sql = null;
List parameters = new List();
try
{
sql = "SELECT * FROM T_BD_PARAMETERCONFIG WHERE '1'='1'";
if (string.IsNullOrEmpty(model.PID) == false)
{
sql += " AND PID = @PID";
parameters.Add(new DataParameter("PID", model.PID));
}
if (string.IsNullOrEmpty(model.MACHINECODDE) == false)
{
sql += " AND MACHINECODDE = @MACHINECODDE";
parameters.Add(new DataParameter("MACHINECODDE", model.MACHINECODDE));
}
using (IDataSession session = AppDataFactory.CreateMainSession())
{
// 对应多种数据库
string sqlChange = this.ChangeSqlByDB(sql, session);
//获取信息
model = session.Get(sqlChange, parameters.ToArray());
}
return model;
}
catch (Exception ex)
{
RecordExceptionLog(ex, "加工参数设定-获取信息");
throw ex;
}
}
#endregion
#region 获取列表
///
/// 获取列表
///
/// 条件
/// 数据页
/// 数据页
public DataPage GetList(ParameterConfigEntity condition, DataPage page)
{
string sql = null;
List parameters = new List();
try
{
sql = this.GetQuerySql(condition, ref parameters);
//分页关键字段及排序
page.KeyName = "PID";
page.SortExpression = "MACHINECODDE ASC";
using (IDataSession session = AppDataFactory.CreateMainSession())
{
// 对应多种数据库
string sqlChange = this.ChangeSqlByDB(sql, session);
page = session.GetDataPage(sqlChange, parameters.ToArray(), page);
}
return page;
}
catch (Exception ex)
{
RecordExceptionLog(ex, "加工参数设定-获取列表");
throw ex;
}
}
#endregion
#region 获取查询语句
///
/// 获取查询语句
///
/// 查询条件
/// 参数
/// 查询语句
private string GetQuerySql(ParameterConfigEntity condition, ref List parameters)
{
StringBuilder sqlBuilder = new StringBuilder();
StringBuilder whereBuilder = new StringBuilder();
try
{
//构成查询语句
sqlBuilder.AppendLine(" select P.PID, P.MACHINECODDE ");
sqlBuilder.AppendLine(" ,M.MACHINENAME ");
sqlBuilder.AppendLine(" ,P.MOLDNUMBER ");
sqlBuilder.AppendLine(" ,P.COLUMNTYPE ");
sqlBuilder.AppendLine(" ,P.COLUMNCODE ");
sqlBuilder.AppendLine(" ,P.CONNECTIONSTRING ");
sqlBuilder.AppendLine(" ,P.DEALTYPE");
sqlBuilder.AppendLine(" ,P.PRODUCELINE ");
sqlBuilder.AppendLine(" ,P.TABLENAME ");
sqlBuilder.AppendLine(" ,P.FACTORY_CODE ");
sqlBuilder.AppendLine(" ,F.FACTORY_NAME ");
sqlBuilder.AppendLine(" from T_BD_PARAMETERCONFIG P ");
sqlBuilder.AppendLine(" LEFT JOIN T_BD_MACHINEINFO M ON P.MACHINECODDE = M.MACHINECODDE ");
sqlBuilder.AppendLine(" LEFT JOIN T_MD_FACTORY F ON F.FACTORY_CODE=P.FACTORY_CODE ");
//查询条件
if (string.IsNullOrEmpty(condition.FACTORY_CODE) == false)
{
whereBuilder.Append(" AND P.FACTORY_CODE = @FACTORY_CODE");
parameters.Add(new DataParameter { ParameterName = "FACTORY_CODE", DataType = DbType.String, Value = condition.FACTORY_CODE });
}
if (string.IsNullOrEmpty(condition.MACHINECODDE) == false)
{
whereBuilder.Append(" AND P.MACHINECODDE = @MACHINECODDE ");
parameters.Add(new DataParameter { ParameterName = "MACHINECODDE", DataType = DbType.String, Value = condition.MACHINECODDE });
}
if (string.IsNullOrEmpty(condition.MACHINENAME) == false)
{
whereBuilder.Append(" AND MACHINENAME = @MACHINENAME ");
parameters.Add(new DataParameter { ParameterName = "MACHINENAME", DataType = DbType.String, Value = condition.MACHINENAME });
}
if (string.IsNullOrEmpty(condition.MOLDNUMBER) == false)
{
whereBuilder.Append(" AND MOLDNUMBER = @MOLDNUMBER ");
parameters.Add(new DataParameter { ParameterName = "MOLDNUMBER", DataType = DbType.String, Value = condition.MOLDNUMBER });
}
if (string.IsNullOrEmpty(condition.COLUMNCODE) == false)
{
whereBuilder.Append(" AND COLUMNCODE = @COLUMNCODE ");
parameters.Add(new DataParameter { ParameterName = "COLUMNCODE", DataType = DbType.String, Value = condition.COLUMNCODE });
}
if (string.IsNullOrEmpty(condition.COLUMNTYPE) == false)
{
whereBuilder.Append(" AND COLUMNTYPE = @COLUMNTYPE ");
parameters.Add(new DataParameter { ParameterName = "COLUMNTYPE", DataType = DbType.String, Value = condition.COLUMNTYPE });
}
if (string.IsNullOrEmpty(condition.PRODUCELINE) == false)
{
whereBuilder.Append(" AND P.PRODUCELINE = @PRODUCELINE ");
parameters.Add(new DataParameter { ParameterName = "PRODUCELINE", DataType = DbType.String, Value = condition.PRODUCELINE });
}
if (whereBuilder.Length > 0)
{
sqlBuilder.Append(" WHERE " + whereBuilder.ToString().Substring(4));
}
return sqlBuilder.ToString();
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 信息是否重复
///
/// 判断编码是否存在
///
///
/// true:已存在;fasel:不存在。
public bool ExistsParameterConfigEntity(ParameterConfigEntity model)
{
string PID = "";
int count = 0;
StringBuilder sqlBuilder = new StringBuilder();
try
{
if (string.IsNullOrEmpty(model.PID) == false)
{
PID = model.PID;
}
sqlBuilder.AppendLine("SELECT COUNT(*) FROM T_BD_PARAMETERCONFIG ");
sqlBuilder.AppendLine(" WHERE PID <> @PID AND FACTORY_CODE=@FACTORY_CODE AND MACHINECODDE=@MACHINECODDE");
using (IDataSession session = AppDataFactory.CreateMainSession())
{
// 对应多种数据库
string sqlChange = this.ChangeSqlByDB(sqlBuilder.ToString(), session);
count = Convert.ToInt32(session.ExecuteSqlScalar(sqlChange,
new DataParameter("PID", PID),
new DataParameter("FACTORY_CODE", model.FACTORY_CODE),
new DataParameter { ParameterName = "MACHINECODDE", Value = model.MACHINECODDE }));
}
if (count > 0)
{
return true;
}
else
{
return false;
}
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
//#region 判断设备编码是否被用
/////
///// 判断设备编号是否被用
/////
///// 工位
///// true:已用;false:未用。
//public bool IsUsedParameterConfigEntityCode(string[] pid)
//{
// int count = 0;
// StringBuilder sqlBuilder = new StringBuilder();
// try
// {
// List paramList = new List();
// sqlBuilder.Append(" SELECT COUNT(*) FROM T_BD_PARAMETERCONFIG WHERE ");
// sqlBuilder.Append(" MACHINECODDE IN ( ");
// sqlBuilder.Append(" SELECT MACHINECODDE FROM T_BD_PARAMETERCONFIG ");
// for (int i = 0; i < pid.Length; i++)
// {
// if (i == 0)
// {
// sqlBuilder.Append(" WHERE PID IN (");
// }
// else
// {
// sqlBuilder.Append(" ,");
// }
// string param = "PID" + i.ToString();
// sqlBuilder.Append(" @").Append(param);
// paramList.Add(new DataParameter(param, DbType.String, pid[i]));
// if (i == pid.Length - 1)
// {
// sqlBuilder.Append(" ) ");
// }
// }
// sqlBuilder.Append(" ) ");
// using (IDataSession session = AppDataFactory.CreateMainSession())
// {
// // 对应多种数据库
// string sqlChange = this.ChangeSqlByDB(sqlBuilder.ToString(), session);
// count = Convert.ToInt32(session.ExecuteSqlScalar(sqlChange, paramList.ToArray()));
// }
// return count == 0 ? false : true;
// }
// catch (Exception ex)
// {
// RecordExceptionLog(ex, "判断设备编号是否被用");
// throw ex;
// }
//}
//#endregion
#region 插入信息
///
/// 插入信息(单表)
///
/// 信息
/// 插入行数
public int Insert(ParameterConfigEntity model)
{
int count = 0;
try
{
using (IDataSession session = AppDataFactory.CreateMainSession())
{
//插入基本信息
count = session.Insert(model);
}
return count;
}
catch (Exception ex)
{
RecordExceptionLog(ex, "插入信息");
throw ex;
}
}
#endregion
#region 更新信息
///
/// 更新信息
///
///
/// 更新行数
public int Update(ParameterConfigEntity model)
{
int count = 0;
try
{
using (IDataSession session = AppDataFactory.CreateMainSession())
{
//更新基本信息
count = session.Update(model);
}
return count;
}
catch (Exception ex)
{
RecordExceptionLog(ex, "更新信息");
throw ex;
}
}
#endregion
#region 删除
///
/// 删除信息
///
/// 物料号信息(ID)
/// 删除个数
public int Delete(ParameterConfigEntity model)
{
StringBuilder sqlBuilder = new StringBuilder();
List parameters = new List();
int count = 0;
try
{
using (IDataSession session = AppDataFactory.CreateMainSession())
{
//删除基本信息
count = session.Delete(model);
}
return count;
}
catch (Exception ex)
{
RecordExceptionLog(ex, "删除");
throw ex;
}
}
#endregion
#region 根据设备编码查找设备名称
///
/// 根据设备编码查找设备名称
///
///
public MachineInfo GetCoddeByName(string machinecodde)
{
try
{
using (IDataSession session = AppDataFactory.CreateMainSession())
{
string sql = "SELECT * FROM [T_BD_MACHINEINFO] WHERE MACHINECODDE=@machinecodde";
var machine = session.Get(sql, new DataParameter("machinecodde", machinecodde));
return machine;
}
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
}
}