using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using System.Data;
using HySoft.DBUtility;
namespace HySoft.BaseCallCenter.DAL
{
///
/// 数据访问类:T_QC_IndexRes
///
public partial class T_QC_IndexRes
{
public T_QC_IndexRes()
{ }
#region Method
///
/// 是否存在该记录
///
public bool Exists(int F_Id)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("select count(1) from T_QC_IndexRes");
strSql.Append(" where F_Id=@F_Id");
SqlParameter[] parameters = {
new SqlParameter("@F_Id", SqlDbType.Int,4)
};
parameters[0].Value = F_Id;
return DbHelperSQL.Exists(strSql.ToString(), parameters);
}
///
/// 增加一条数据
///
public int Add(HySoft.BaseCallCenter.Model.T_QC_IndexRes model)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("insert into T_QC_IndexRes(");
strSql.Append("CallRecordsId,F_IndexId,F_Score,F_QCScore,F_Remark)");
strSql.Append(" values (");
strSql.Append("@CallRecordsId,@F_IndexId,@F_Score,@F_QCScore,@F_Remark)");
strSql.Append(";select @@IDENTITY");
SqlParameter[] parameters = {
new SqlParameter("@CallRecordsId", SqlDbType.Int,4),
new SqlParameter("@F_IndexId", SqlDbType.Int,4),
new SqlParameter("@F_Score", SqlDbType.Int,4),
new SqlParameter("@F_QCScore", SqlDbType.Int,4),
new SqlParameter("@F_Remark", SqlDbType.NVarChar,2000)};
parameters[0].Value = model.CallRecordsId;
parameters[1].Value = model.F_IndexId;
parameters[2].Value = model.F_Score;
parameters[3].Value = model.F_QCScore;
parameters[4].Value = model.F_Remark;
object obj = DbHelperSQL.GetSingle(strSql.ToString(), parameters);
if (obj == null)
{
return 0;
}
else
{
return Convert.ToInt32(obj);
}
}
///
/// 更新一条数据
///
public bool Update(HySoft.BaseCallCenter.Model.T_QC_IndexRes model)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("update T_QC_IndexRes set ");
strSql.Append("CallRecordsId=@CallRecordsId,");
strSql.Append("F_IndexId=@F_IndexId,");
strSql.Append("F_Score=@F_Score,");
strSql.Append("F_QCScore=@F_QCScore,");
strSql.Append("F_Remark=@F_Remark");
strSql.Append(" where F_Id=@F_Id");
SqlParameter[] parameters = {
new SqlParameter("@CallRecordsId", SqlDbType.Int,4),
new SqlParameter("@F_IndexId", SqlDbType.Int,4),
new SqlParameter("@F_Score", SqlDbType.Int,4),
new SqlParameter("@F_QCScore", SqlDbType.Int,4),
new SqlParameter("@F_Remark", SqlDbType.NVarChar,2000),
new SqlParameter("@F_Id", SqlDbType.Int,4)};
parameters[0].Value = model.CallRecordsId;
parameters[1].Value = model.F_IndexId;
parameters[2].Value = model.F_Score;
parameters[3].Value = model.F_QCScore;
parameters[4].Value = model.F_Remark;
parameters[5].Value = model.F_Id;
int rows = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters);
if (rows > 0)
{
return true;
}
else
{
return false;
}
}
///
/// 删除一条数据
///
public bool Delete(int F_Id)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("delete from T_QC_IndexRes ");
strSql.Append(" where F_Id=@F_Id");
SqlParameter[] parameters = {
new SqlParameter("@F_Id", SqlDbType.Int,4)
};
parameters[0].Value = F_Id;
int rows = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters);
if (rows > 0)
{
return true;
}
else
{
return false;
}
}
///
/// 批量删除数据
///
public bool DeleteList(string F_Idlist)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("delete from T_QC_IndexRes ");
strSql.Append(" where F_Id in (" + F_Idlist + ") ");
int rows = DbHelperSQL.ExecuteSql(strSql.ToString());
if (rows > 0)
{
return true;
}
else
{
return false;
}
}
///
/// 得到一个对象实体
///
public HySoft.BaseCallCenter.Model.T_QC_IndexRes GetModel(int F_Id)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("select top 1 F_Id,CallRecordsId,F_IndexId,F_Score,F_QCScore,F_Remark from T_QC_IndexRes ");
strSql.Append(" where F_Id=@F_Id");
SqlParameter[] parameters = {
new SqlParameter("@F_Id", SqlDbType.Int,4)
};
parameters[0].Value = F_Id;
HySoft.BaseCallCenter.Model.T_QC_IndexRes model = new HySoft.BaseCallCenter.Model.T_QC_IndexRes();
DataSet ds = DbHelperSQL.Query(strSql.ToString(), parameters);
if (ds.Tables[0].Rows.Count > 0)
{
if (ds.Tables[0].Rows[0]["F_Id"] != null && ds.Tables[0].Rows[0]["F_Id"].ToString() != "")
{
model.F_Id = int.Parse(ds.Tables[0].Rows[0]["F_Id"].ToString());
}
if (ds.Tables[0].Rows[0]["CallRecordsId"] != null && ds.Tables[0].Rows[0]["CallRecordsId"].ToString() != "")
{
model.CallRecordsId = int.Parse(ds.Tables[0].Rows[0]["CallRecordsId"].ToString());
}
if (ds.Tables[0].Rows[0]["F_IndexId"] != null && ds.Tables[0].Rows[0]["F_IndexId"].ToString() != "")
{
model.F_IndexId = int.Parse(ds.Tables[0].Rows[0]["F_IndexId"].ToString());
}
if (ds.Tables[0].Rows[0]["F_Score"] != null && ds.Tables[0].Rows[0]["F_Score"].ToString() != "")
{
model.F_Score = int.Parse(ds.Tables[0].Rows[0]["F_Score"].ToString());
}
if (ds.Tables[0].Rows[0]["F_QCScore"] != null && ds.Tables[0].Rows[0]["F_QCScore"].ToString() != "")
{
model.F_QCScore = int.Parse(ds.Tables[0].Rows[0]["F_QCScore"].ToString());
}
if (ds.Tables[0].Rows[0]["F_Remark"] != null && ds.Tables[0].Rows[0]["F_Remark"].ToString() != "")
{
model.F_Remark = ds.Tables[0].Rows[0]["F_Remark"].ToString();
}
return model;
}
else
{
return null;
}
}
///
/// 获得数据列表
///
public DataSet GetList(string strWhere)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("select F_Id,CallRecordsId,F_IndexId,F_Score,F_QCScore,F_Remark ");
strSql.Append(" FROM T_QC_IndexRes ");
if (strWhere.Trim() != "")
{
strSql.Append(" where " + strWhere);
}
return DbHelperSQL.Query(strSql.ToString());
}
///
/// 获得前几行数据
///
public DataSet GetList(int Top, string strWhere, string filedOrder)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("select ");
if (Top > 0)
{
strSql.Append(" top " + Top.ToString());
}
strSql.Append(" F_Id,CallRecordsId,F_IndexId,F_Score,F_QCScore,F_Remark ");
strSql.Append(" FROM T_QC_IndexRes ");
if (strWhere.Trim() != "")
{
strSql.Append(" where " + strWhere);
}
strSql.Append(" order by " + filedOrder);
return DbHelperSQL.Query(strSql.ToString());
}
///
/// 获取记录总数
///
public int GetRecordCount(string strWhere)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("select count(1) FROM T_QC_IndexRes ");
if (strWhere.Trim() != "")
{
strSql.Append(" where " + strWhere);
}
object obj = DbHelperSQL.GetSingle(strSql.ToString());
if (obj == null)
{
return 0;
}
else
{
return Convert.ToInt32(obj);
}
}
///
/// 分页获取数据列表
///
public DataSet GetListByPage(string strWhere, string orderby, int startIndex, int endIndex)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("SELECT * FROM ( ");
strSql.Append(" SELECT ROW_NUMBER() OVER (");
if (!string.IsNullOrEmpty(orderby.Trim()))
{
strSql.Append("order by T." + orderby);
}
else
{
strSql.Append("order by T.F_Id desc");
}
strSql.Append(")AS Row, T.* from T_QC_IndexRes T ");
if (!string.IsNullOrEmpty(strWhere.Trim()))
{
strSql.Append(" WHERE " + strWhere);
}
strSql.Append(" ) TT");
strSql.AppendFormat(" WHERE TT.Row between {0} and {1}", startIndex, endIndex);
return DbHelperSQL.Query(strSql.ToString());
}
/*
///
/// 分页获取数据列表
///
public DataSet GetList(int PageSize,int PageIndex,string strWhere)
{
SqlParameter[] parameters = {
new SqlParameter("@tblName", SqlDbType.VarChar, 255),
new SqlParameter("@fldName", SqlDbType.VarChar, 255),
new SqlParameter("@PageSize", SqlDbType.Int),
new SqlParameter("@PageIndex", SqlDbType.Int),
new SqlParameter("@IsReCount", SqlDbType.Bit),
new SqlParameter("@OrderType", SqlDbType.Bit),
new SqlParameter("@strWhere", SqlDbType.VarChar,1000),
};
parameters[0].Value = "T_QC_IndexRes";
parameters[1].Value = "F_Id";
parameters[2].Value = PageSize;
parameters[3].Value = PageIndex;
parameters[4].Value = 0;
parameters[5].Value = 0;
parameters[6].Value = strWhere;
return DbHelperSQL.RunProcedure("UP_GetRecordByPage",parameters,"ds");
}*/
#endregion Method
}
}