using CallCenterApi.DB;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.DAL
{
//
/// 数据访问类:T_Sys_DictionaryBase
///
public partial class T_Sys_DictionaryBase
{
public T_Sys_DictionaryBase()
{ }
#region BasicMethod
///
/// 是否存在该记录
///
public bool Exists(string F_DictionaryFlag)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("select count(1) from T_Sys_DictionaryBase");
strSql.Append(" where F_DictionaryFlag=@F_DictionaryFlag ");
SqlParameter[] parameters = {
new SqlParameter("@F_DictionaryFlag", SqlDbType.VarChar,50) };
parameters[0].Value = F_DictionaryFlag;
return DbHelperSQL.Exists(strSql.ToString(), parameters);
}
///
/// 增加一条数据
///
public bool Add(Model.T_Sys_DictionaryBase model)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("insert into T_Sys_DictionaryBase(");
strSql.Append("F_DictionaryFlag,F_DictionaryName,F_Sort,F_Describe,F_State)");
strSql.Append(" values (");
strSql.Append("@F_DictionaryFlag,@F_DictionaryName,@F_Sort,@F_Describe,@F_State)");
SqlParameter[] parameters = {
new SqlParameter("@F_DictionaryFlag", SqlDbType.VarChar,50),
new SqlParameter("@F_DictionaryName", SqlDbType.VarChar,50),
new SqlParameter("@F_Sort", SqlDbType.Int,4),
new SqlParameter("@F_Describe", SqlDbType.VarChar,100),
new SqlParameter("@F_State", SqlDbType.VarChar,20)};
parameters[0].Value = model.F_DictionaryFlag;
parameters[1].Value = model.F_DictionaryName;
parameters[2].Value = model.F_Sort;
parameters[3].Value = model.F_Describe;
parameters[4].Value = model.F_State;
int rows = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters);
if (rows > 0)
{
return true;
}
else
{
return false;
}
}
///
/// 更新一条数据
///
public bool Update(Model.T_Sys_DictionaryBase model)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("update T_Sys_DictionaryBase set ");
strSql.Append("F_DictionaryName=@F_DictionaryName,");
strSql.Append("F_Sort=@F_Sort,");
strSql.Append("F_Describe=@F_Describe,");
strSql.Append("F_State=@F_State");
strSql.Append(" where F_DictionaryFlag=@F_DictionaryFlag ");
SqlParameter[] parameters = {
new SqlParameter("@F_DictionaryName", SqlDbType.VarChar,50),
new SqlParameter("@F_Sort", SqlDbType.Int,4),
new SqlParameter("@F_Describe", SqlDbType.VarChar,100),
new SqlParameter("@F_State", SqlDbType.VarChar,20),
new SqlParameter("@F_DictionaryFlag", SqlDbType.VarChar,50)};
parameters[0].Value = model.F_DictionaryName;
parameters[1].Value = model.F_Sort;
parameters[2].Value = model.F_Describe;
parameters[3].Value = model.F_State;
parameters[4].Value = model.F_DictionaryFlag;
int rows = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters);
if (rows > 0)
{
return true;
}
else
{
return false;
}
}
///
/// 删除一条数据
///
public bool Delete(string F_DictionaryFlag)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("delete from T_Sys_DictionaryBase ");
strSql.Append(" where F_DictionaryFlag=@F_DictionaryFlag ");
SqlParameter[] parameters = {
new SqlParameter("@F_DictionaryFlag", SqlDbType.VarChar,50) };
parameters[0].Value = F_DictionaryFlag;
int rows = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters);
if (rows > 0)
{
return true;
}
else
{
return false;
}
}
///
/// 批量删除数据
///
public bool DeleteList(string F_DictionaryFlaglist)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("delete from T_Sys_DictionaryBase ");
strSql.Append(" where F_DictionaryFlag in (" + F_DictionaryFlaglist + ") ");
int rows = DbHelperSQL.ExecuteSql(strSql.ToString());
if (rows > 0)
{
return true;
}
else
{
return false;
}
}
///
/// 得到一个对象实体
///
public Model.T_Sys_DictionaryBase GetModel(string F_DictionaryFlag)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("select top 1 F_DictionaryFlag,F_DictionaryName,F_Sort,F_Describe,F_State from T_Sys_DictionaryBase ");
strSql.Append(" where F_DictionaryFlag=@F_DictionaryFlag ");
SqlParameter[] parameters = {
new SqlParameter("@F_DictionaryFlag", SqlDbType.VarChar,50) };
parameters[0].Value = F_DictionaryFlag;
Model.T_Sys_DictionaryBase model = new Model.T_Sys_DictionaryBase();
DataSet ds = DbHelperSQL.Query(strSql.ToString(), parameters);
if (ds.Tables[0].Rows.Count > 0)
{
return DataRowToModel(ds.Tables[0].Rows[0]);
}
else
{
return null;
}
}
///
/// 得到一个对象实体
///
public Model.T_Sys_DictionaryBase DataRowToModel(DataRow row)
{
Model.T_Sys_DictionaryBase model = new Model.T_Sys_DictionaryBase();
if (row != null)
{
if (row["F_DictionaryFlag"] != null)
{
model.F_DictionaryFlag = row["F_DictionaryFlag"].ToString();
}
if (row["F_DictionaryName"] != null)
{
model.F_DictionaryName = row["F_DictionaryName"].ToString();
}
if (row["F_Sort"] != null && row["F_Sort"].ToString() != "")
{
model.F_Sort = int.Parse(row["F_Sort"].ToString());
}
if (row["F_Describe"] != null)
{
model.F_Describe = row["F_Describe"].ToString();
}
if (row["F_State"] != null && row["F_State"] != DBNull.Value)
{
model.F_State = Convert.ToBoolean(row["F_State"]);
}
else { model.F_State = false; }
}
return model;
}
///
/// 获得数据列表
///
public DataSet GetList(string strWhere)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("select F_DictionaryFlag,F_DictionaryName,F_Sort,F_Describe,F_State ");
strSql.Append(" FROM T_Sys_DictionaryBase ");
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_DictionaryFlag,F_DictionaryName,F_Sort,F_Describe,F_State ");
strSql.Append(" FROM T_Sys_DictionaryBase ");
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_Sys_DictionaryBase ");
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_DictionaryFlag desc");
}
strSql.Append(")AS Row, T.* from T_Sys_DictionaryBase 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());
}
#endregion BasicMethod
#region ExtensionMethod
#endregion ExtensionMethod
}
}