天津投入产出系统后端
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.

491 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年09月01日
/// </summary>
public class DAIValidationDAL
{
#region 获取信息
/// <summary>
/// 获取信息
/// </summary>
/// <param name="">条件</param>
/// <returns>*信息</returns>
public DAIValidation Get(DAIValidation info)
{
try
{
using (IDataSession session = AppDataFactory.CreateMainSession())
{
//获取信息
info = session.Get<DAIValidation>(info);
}
return info;
}
catch (Exception ex)
{
throw ex;
}
}
/// <summary>
/// 获取信息
/// </summary>
/// <param name="">条件</param>
/// <returns>*信息</returns>
public DAIValidation GetByPID(string PID)
{
StringBuilder sql = new StringBuilder();
List<DataParameter> parameters = new List<DataParameter>();
try
{
sql.AppendLine("SELECT W.WORKCELL_NAME ");
sql.AppendLine(" ,W.WORKCENTER_CODE ");
sql.AppendLine(" ,D.WORKCELL_CODE ");
sql.AppendLine(" ,D.DA_NAME,D.DA_CODE ");
sql.AppendLine(" ,V.VALIDATOR_NAME ");
sql.AppendLine(" ,DV.* ");
sql.AppendLine("FROM T_QT_DAI_VALIDATION DV ");
sql.AppendLine("LEFT JOIN T_QT_VALIDATOR V ");
sql.AppendLine(" ON V.VALIDATOR_CODE=DV.VALIDATION_CODE ");
sql.AppendLine("LEFT JOIN T_QT_DAI D ");
sql.AppendLine(" ON D.PID=DV.DAI_PID ");
sql.AppendLine("LEFT JOIN T_MD_WORKCELL W ");
sql.AppendLine(" ON W.WORKCELL_CODE=D.WORKCELL_CODE ");
sql.AppendLine("WHERE DV.PID = @PID ");
parameters.Add(new DataParameter("PID", PID));
using (IDataSession session = AppDataFactory.CreateMainSession())
{
var result = session.Get<DAIValidation>(sql.ToString(), parameters.ToArray());
return result;
}
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 获取列表
/// <summary>
/// 获取列表
/// </summary>
/// <param name="condition">条件</param>
/// <param name="page">数据页</param>
/// <returns>数据页</returns>
public DataPage GetList(DAIValidation 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<DAIValidation>(sql, parameters.ToArray(), page);
}
return page;
}
catch (Exception ex)
{
throw ex;
}
}
public DataPage GetEditableList(DAIValidation condition, DataPage page)
{
StringBuilder sql = new StringBuilder();
List<DataParameter> parameters = new List<DataParameter>();
try
{
sql.AppendLine("SELECT W.WORKCELL_NAME ");
sql.AppendLine(" ,W.WORKCENTER_CODE ");
sql.AppendLine(" ,D.WORKCELL_CODE ");
sql.AppendLine(" ,D.DA_NAME,D.DA_CODE ");
sql.AppendLine(" ,V.VALIDATOR_NAME ");
sql.AppendLine(" ,DV.* ");
sql.AppendLine("FROM T_QT_DAI_VALIDATION DV ");
sql.AppendLine("LEFT JOIN T_QT_VALIDATOR V ");
sql.AppendLine(" ON V.VALIDATOR_CODE=DV.VALIDATION_CODE ");
sql.AppendLine("LEFT JOIN T_QT_DAI D ");
sql.AppendLine(" ON D.PID=DV.DAI_PID ");
sql.AppendLine("LEFT JOIN T_MD_WORKCELL W ");
sql.AppendLine(" ON W.WORKCELL_CODE=D.WORKCELL_CODE ");
sql.AppendLine("WHERE DV.CREATEUSER = 'Editable' ");
if (!string.IsNullOrEmpty(condition.WORKCELL_CODE))
{
sql.AppendLine(" AND W.WORKCELL_CODE = @WORKCELL_CODE ");
parameters.Add(new DataParameter("WORKCELL_CODE", condition.WORKCELL_CODE));
}
if (!string.IsNullOrEmpty(condition.VALIDATION_CODE))
{
sql.AppendLine(" AND DV.VALIDATION_CODE = @VALIDATION_CODE ");
parameters.Add(new DataParameter("VALIDATION_CODE", condition.VALIDATION_CODE));
}
//分页关键字段及排序
page.KeyName = "PID";
if (string.IsNullOrEmpty(page.SortExpression))
page.SortExpression = "UPDATEDATE DESC";
using (IDataSession session = AppDataFactory.CreateMainSession())
{
page = session.GetDataPage<DAIValidation>(sql.ToString(), parameters.ToArray(), page);
}
return page;
}
catch (Exception ex)
{
throw ex;
}
}
/// <summary>
/// 获取列表
/// </summary>
///<param name="daipid">采集点主键</param>
/// <returns>采集点校验项</returns>
public List<DAIValidation> GetList(string daipid)
{
string sql = null;
List<DataParameter> parameters = new List<DataParameter>();
try
{
sql = "SELECT * FROM [T_QT_DAI_VALIDATION] WHERE [DAI_PID]=@daipid";
parameters.Add(new DataParameter("daipid", daipid));
using (IDataSession session = AppDataFactory.CreateMainSession())
{
return session.GetList<DAIValidation>(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(DAIValidation condition, ref List<DataParameter> parameters)
{
StringBuilder sqlBuilder = new StringBuilder();
StringBuilder whereBuilder = new StringBuilder();
try
{
//构成查询语句
sqlBuilder.Append("SELECT PID,DAI_PID,ITEM_CODE,VALIDATION_CODE,STD_VALUE,LOWER_LMT,UPPER_LMT,REMARK,CREATEUSER,CREATEDATE,UPDATEUSER,UPDATEDATE ");
sqlBuilder.Append("FROM T_QT_DAI_VALIDATION ");
whereBuilder.Append(" AND FLGDEL<> '1' ");
//查询条件
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(DAIValidation 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 = "DAIValidation";
}
return dt;
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 信息是否重复
/// <summary>
/// 判断名称是否存在
/// </summary>
/// <param name="info"></param>
/// <returns>true:已存在;fasel:不存在。</returns>
public bool Exists(DAIValidation 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_VALIDATION");
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(DAIValidation info)
{
int count = 0;
try
{
using (IDataSession session = AppDataFactory.CreateMainSession())
{
//插入基本信息
count = session.Insert<DAIValidation>(info);
}
return count;
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 更新信息
/// <summary>
/// 更新信息
/// </summary>
/// <param name=""></param>
/// <returns>更新行数</returns>
public int Update(DAIValidation info)
{
int count = 0;
try
{
List<DataParameter> paramlist = new List<DataParameter>();
paramlist.Add(new DataParameter("PID", info.PID));
paramlist.Add(new DataParameter("DISABLE", info.DISABLE));
paramlist.Add(new DataParameter("REMARK", info.REMARK));
paramlist.Add(new DataParameter("UPPER_LMT", info.UPPER_LMT));
paramlist.Add(new DataParameter("LOWER_LMT", info.LOWER_LMT));
StringBuilder sql = new StringBuilder();
sql.AppendLine("UPDATE [T_QT_DAI_VALIDATION]");
sql.AppendLine("SET [LOWER_LMT]=@LOWER_LMT");
sql.AppendLine(" ,[UPPER_LMT]=@UPPER_LMT");
sql.AppendLine(" ,[REMARK]=@REMARK");
sql.AppendLine(" ,[DISABLE]=@DISABLE");
if (!string.IsNullOrEmpty(info.STD_VALUE))
{
sql.AppendLine(" ,[STD_VALUE]=@STD_VALUE");
paramlist.Add(new DataParameter("STD_VALUE", info.STD_VALUE));
}
if (!string.IsNullOrEmpty(info.ITEM_CODE))
{
sql.AppendLine(" ,[ITEM_CODE]=@ITEM_CODE");
paramlist.Add(new DataParameter("ITEM_CODE", info.ITEM_CODE));
}
sql.AppendLine("WHERE [PID]=@PID");
using (IDataSession session = AppDataFactory.CreateMainSession())
{
//更新基本信息
count = session.ExecuteSql(sql.ToString(), paramlist.ToArray());
}
return count;
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
public int Disable(string[] ids)
{
if (ids == null || ids.Length == 0)
{
return 0;
}
string idstring = string.Join("','", ids);
idstring = "'" + idstring + "'";
StringBuilder sqlBuilder = new StringBuilder();
List<DataParameter> parameters = new List<DataParameter>();
int count = 0;
try
{
using (IDataSession session = AppDataFactory.CreateMainSession())
{
//删除基本信息
sqlBuilder.Append("UPDATE T_QT_DAI_VALIDATION ");
sqlBuilder.Append("SET DISABLE = '1' ");
sqlBuilder.Append("WHERE PID IN (" + idstring + ")");
count = session.ExecuteSql(sqlBuilder.ToString(), parameters.ToArray());
}
return count;
}
catch (Exception ex)
{
throw ex;
}
}
public int Enable(string[] ids)
{
if (ids == null || ids.Length == 0)
{
return 0;
}
string idstring = string.Join("','", ids);
idstring = "'" + idstring + "'";
StringBuilder sqlBuilder = new StringBuilder();
List<DataParameter> parameters = new List<DataParameter>();
int count = 0;
try
{
using (IDataSession session = AppDataFactory.CreateMainSession())
{
//删除基本信息
sqlBuilder.Append("UPDATE T_QT_DAI_VALIDATION ");
sqlBuilder.Append("SET DISABLE = '0' ");
sqlBuilder.Append("WHERE PID IN (" + idstring + ")");
count = session.ExecuteSql(sqlBuilder.ToString(), parameters.ToArray());
}
return count;
}
catch (Exception ex)
{
throw ex;
}
}
#region 逻辑删除
/// <summary>
/// 逻辑删除信息
/// </summary>
/// <param name=""></param>
/// <returns>删除个数</returns>
public int Delete(DAIValidation info)
{
StringBuilder sqlBuilder = new StringBuilder();
List<DataParameter> parameters = new List<DataParameter>();
int count = 0;
try
{
using (IDataSession session = AppDataFactory.CreateMainSession())
{
//删除基本信息
sqlBuilder.Append("UPDATE T_QT_DAI_VALIDATION ");
sqlBuilder.Append("SET FLGDEL = '1' ");
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
#region 导入
public ImportMessage GetImportData(List<DAIValidation> list)
{
ImportMessage em = new ImportMessage();
List<DataParameter> parameters = new List<DataParameter>();
try
{
using (IDataSession session = AppDataFactory.CreateMainSession())
{
//设置祖先对象数据会话
session.OpenTs();
foreach (DAIValidation info in list)
{
if (info.IsNewInfo)
{
//插入信息
int count = session.Insert<DAIValidation>(info);
em.insertNum++;
}
else
{
//更新信息
int count = session.Update<DAIValidation>(info);
em.updateNum++;
}
}
session.CommitTs();
}
}
catch (Exception ex)
{
throw ex;
}
return em;
}
#endregion
}
}