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.
392 lines
14 KiB
392 lines
14 KiB
8 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMAPP.MD.Entity;
|
||
|
using QMFrameWork.Data;
|
||
|
using QMFrameWork.Log;
|
||
|
using System.Data;
|
||
|
using QMAPP.DAL;
|
||
|
using QMAPP.Entity;
|
||
|
using QMAPP.FJC.Entity.CCParameters;
|
||
|
|
||
|
namespace QMAPP.FJC.DAL.CCParameters
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 作 用:加工参数采集
|
||
|
/// 作 者:张松男
|
||
|
/// 编写日期:2023年02月06日
|
||
|
///</summary>
|
||
|
public class PARAMETERSDAL : BaseDAL
|
||
|
{
|
||
|
|
||
|
#region 获取信息
|
||
|
/// <summary>
|
||
|
/// 获取信息
|
||
|
/// </summary>
|
||
|
/// <param name="">条件</param>
|
||
|
/// <returns>*信息</returns>
|
||
|
public PARAMETERS Get(PARAMETERS info)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateSession("maindbEQUIPMENT"))
|
||
|
{
|
||
|
//获取信息
|
||
|
info = session.Get<PARAMETERS>(info);
|
||
|
}
|
||
|
return info;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 获取列表
|
||
|
/// <summary>
|
||
|
/// 获取列表
|
||
|
/// </summary>
|
||
|
/// <param name="condition">条件</param>
|
||
|
/// <param name="page">数据页</param>
|
||
|
/// <returns>数据页</returns>
|
||
|
public DataPage GetList(PARAMETERS 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 = "inTime DESC"; //创建时间倒叙排列
|
||
|
using (IDataSession session = AppDataFactory.CreateSession("maindbEQUIPMENT"))
|
||
|
{
|
||
|
// 对应多种数据库
|
||
|
//string sqlChange = this.ChangeSqlByDB(sql, session);
|
||
|
page = session.GetDataPage<PARAMETERS>(sql, parameters.ToArray(), page);
|
||
|
|
||
|
}
|
||
|
return page;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// 获取全部规则
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
public List<PARAMETERS> GetAllList()
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
string sql = "SELECT * FROM [T_EQUIPMENT_PARAMETERS]";
|
||
|
List<DataParameter> parameters = new List<DataParameter>();
|
||
|
using (IDataSession session = AppDataFactory.CreateSession("maindbEQUIPMENT"))
|
||
|
{
|
||
|
return session.GetList<PARAMETERS>(sql, 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(PARAMETERS condition, ref List<DataParameter> parameters)
|
||
|
{
|
||
|
StringBuilder sqlBuilder = new StringBuilder();
|
||
|
StringBuilder whereBuilder = new StringBuilder();
|
||
|
try
|
||
|
{
|
||
|
//构成查询语句
|
||
|
sqlBuilder.Append("SELECT pid,supplier,supplierName,vehicleType,partNumber,partName,variance,station,processTime,parameter,value,lower_limit,upper_limit,inTime,BTV ");
|
||
|
sqlBuilder.Append("FROM T_EQUIPMENT_PARAMETERS ");
|
||
|
|
||
|
//查询条件
|
||
|
|
||
|
|
||
|
|
||
|
//查询条件
|
||
|
if (string.IsNullOrEmpty(condition.vehicleType) == false)
|
||
|
{
|
||
|
whereBuilder.Append(" AND vehicleType like @vehicleType ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "vehicleType", DataType = DbType.String, Value = condition.vehicleType });
|
||
|
}
|
||
|
if (string.IsNullOrEmpty(condition.parameter) == false)
|
||
|
{
|
||
|
whereBuilder.Append(" AND parameter like @parameter ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "parameter", DataType = DbType.String, Value = condition.parameter });
|
||
|
}
|
||
|
if (string.IsNullOrEmpty(condition.station) == false)
|
||
|
{
|
||
|
whereBuilder.Append(" AND station like @station ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "station", DataType = DbType.String, Value = condition.station });
|
||
|
}
|
||
|
if (condition.begintime != DateTime.MinValue)
|
||
|
{
|
||
|
whereBuilder.Append(" AND inTime >= @begintime ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "begintime", DataType = DbType.String, Value = condition.begintime });
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
whereBuilder.Append(" AND inTime >= @begintime ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "begintime", DataType = DbType.String, Value = DateTime.Now.AddDays(-1) });
|
||
|
}
|
||
|
if (condition.endtime != DateTime.MinValue)
|
||
|
{
|
||
|
whereBuilder.Append(" AND inTime <= @endtime ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "endtime", DataType = DbType.String, Value = condition.endtime });
|
||
|
}
|
||
|
|
||
|
|
||
|
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>
|
||
|
/// <param name="parameters">参数</param>
|
||
|
/// <returns>查询语句</returns>
|
||
|
private string GetQuerySqlExp(PARAMETERS condition, ref List<DataParameter> parameters)
|
||
|
{
|
||
|
StringBuilder sqlBuilder = new StringBuilder();
|
||
|
StringBuilder whereBuilder = new StringBuilder();
|
||
|
try
|
||
|
{
|
||
|
//构成查询语句
|
||
|
sqlBuilder.Append("SELECT pid,supplier,supplierName,vehicleType,partNumber,partName,variance,station,processTime,parameter,value,lower_limit,upper_limit,inTime,BTV ");
|
||
|
sqlBuilder.Append("FROM T_EQUIPMENT_PARAMETERS ");
|
||
|
|
||
|
//查询条件
|
||
|
|
||
|
|
||
|
|
||
|
//查询条件
|
||
|
if (string.IsNullOrEmpty(condition.vehicleType) == false)
|
||
|
{
|
||
|
whereBuilder.Append(" AND vehicleType like @vehicleType ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "vehicleType", DataType = DbType.String, Value = condition.vehicleType });
|
||
|
}
|
||
|
if (string.IsNullOrEmpty(condition.parameter) == false)
|
||
|
{
|
||
|
whereBuilder.Append(" AND parameter like @parameter ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "parameter", DataType = DbType.String, Value = condition.parameter });
|
||
|
}
|
||
|
if (string.IsNullOrEmpty(condition.station) == false)
|
||
|
{
|
||
|
whereBuilder.Append(" AND station like @station ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "station", DataType = DbType.String, Value = condition.station });
|
||
|
}
|
||
|
if (condition.begintime != DateTime.MinValue)
|
||
|
{
|
||
|
whereBuilder.Append(" AND inTime >= @begintime ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "begintime", DataType = DbType.String, Value = condition.begintime });
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
whereBuilder.Append(" AND inTime >= @begintime ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "begintime", DataType = DbType.String, Value = DateTime.Now.AddDays(-1) });
|
||
|
}
|
||
|
if (condition.endtime != DateTime.MinValue)
|
||
|
{
|
||
|
whereBuilder.Append(" AND inTime <= @endtime ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "endtime", DataType = DbType.String, Value = condition.endtime });
|
||
|
}
|
||
|
|
||
|
|
||
|
if (whereBuilder.Length > 0)
|
||
|
{
|
||
|
sqlBuilder.Append(" WHERE " + whereBuilder.ToString().Substring(4));
|
||
|
}
|
||
|
|
||
|
sqlBuilder.Append("ORDER BY inTime DESC ");
|
||
|
return sqlBuilder.ToString();
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 获取导出的数据
|
||
|
/// <summary>
|
||
|
/// 获取导出的数据
|
||
|
/// </summary>
|
||
|
/// <param name="user">查询条件</param>
|
||
|
/// <returns>数据</returns>
|
||
|
public DataTable GetExportData(PARAMETERS info)
|
||
|
{
|
||
|
DataTable dt = null;
|
||
|
string sql = null;
|
||
|
List<DataParameter> parameters = new List<DataParameter>();
|
||
|
try
|
||
|
{
|
||
|
//构成查询语句
|
||
|
sql = this.GetQuerySqlExp(info, ref parameters);
|
||
|
using (IDataSession session = AppDataFactory.CreateSession("maindbEQUIPMENT"))
|
||
|
{
|
||
|
dt = session.GetTable(sql, parameters.ToArray());
|
||
|
dt.TableName = "PARAMETERS";
|
||
|
}
|
||
|
return dt;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 信息是否重复
|
||
|
/// <summary>
|
||
|
/// 判断名称是否存在
|
||
|
/// </summary>
|
||
|
/// <param name="info"></param>
|
||
|
/// <returns>true:已存在;fasel:不存在。</returns>
|
||
|
public bool Exists(PARAMETERS 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_EQUIPMENT_PARAMETERS");
|
||
|
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.CreateSession("maindbEQUIPMENT"))
|
||
|
{
|
||
|
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(PARAMETERS info)
|
||
|
{
|
||
|
int count = 0;
|
||
|
try
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateSession("maindbEQUIPMENT"))
|
||
|
{
|
||
|
//插入基本信息
|
||
|
count = session.Insert<PARAMETERS>(info);
|
||
|
}
|
||
|
return count;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 更新信息
|
||
|
/// <summary>
|
||
|
/// 更新信息
|
||
|
/// </summary>
|
||
|
/// <param name=""></param>
|
||
|
/// <returns>更新行数</returns>
|
||
|
public int Update(PARAMETERS info)
|
||
|
{
|
||
|
int count = 0;
|
||
|
try
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateSession("maindbEQUIPMENT"))
|
||
|
{
|
||
|
//更新基本信息
|
||
|
count = session.Update<PARAMETERS>(info);
|
||
|
}
|
||
|
return count;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 逻辑删除
|
||
|
/// <summary>
|
||
|
/// 逻辑删除信息
|
||
|
/// </summary>
|
||
|
/// <param name=""></param>
|
||
|
/// <returns>删除个数</returns>
|
||
|
public int Delete(PARAMETERS info)
|
||
|
{
|
||
|
StringBuilder sqlBuilder = new StringBuilder();
|
||
|
List<DataParameter> parameters = new List<DataParameter>();
|
||
|
int count = 0;
|
||
|
try
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateSession("maindbEQUIPMENT"))
|
||
|
{
|
||
|
//删除基本信息
|
||
|
sqlBuilder.Append("delete T_EQUIPMENT_PARAMETERS ");
|
||
|
sqlBuilder.Append("WHERE pid = @pid ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "pid", DataType = DbType.String, Value = info.pid });
|
||
|
count = session.ExecuteSql(sqlBuilder.ToString(), parameters.ToArray());
|
||
|
}
|
||
|
return count;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|