using CallCenterApi.DB;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.IO;
using System.Linq;
using System.Text;
namespace CallCenterApi.DAL
{
///
/// 数据访问类:submit_RePush
///
public partial class submit_RePush
{
public submit_RePush()
{ }
#region BasicMethod
///
/// 得到最大ID
///
public int GetMaxId()
{
return DbHelperSQL.GetMaxID("F_ID", "submit_RePush");
}
///
/// 是否存在该记录
///
public bool Exists(int F_ID)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("select count(1) from submit_RePush");
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(CallCenterApi.Model.submit_RePush model)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("insert into submit_RePush(");
strSql.Append("F_Content,F_Url,Code,CreateTime,ErrorMsg,Title,Sequence,number)");
strSql.Append(" values (");
strSql.Append("@F_Content,@F_Url,@Code,@CreateTime,@ErrorMsg,@Title,@Sequence,@number)");
strSql.Append(";select @@IDENTITY");
SqlParameter[] parameters = {
new SqlParameter("@F_Content", SqlDbType.NVarChar,-1),
new SqlParameter("@F_Url", SqlDbType.NVarChar,500),
new SqlParameter("@Code", SqlDbType.Int,4),
new SqlParameter("@CreateTime", SqlDbType.DateTime),
new SqlParameter("@ErrorMsg", SqlDbType.NVarChar,1000),
new SqlParameter("@Title", SqlDbType.NVarChar,20),
new SqlParameter("@Sequence", SqlDbType.Int,4),
new SqlParameter("@number", SqlDbType.Int,4)
};
parameters[0].Value = model.F_Content;
parameters[1].Value = model.F_Url;
parameters[2].Value = model.Code;
parameters[3].Value = model.CreateTime;
parameters[4].Value = model.ErrorMsg;
parameters[5].Value = model.Title;
parameters[6].Value = model.Sequence;
parameters[7].Value = model.number;
object obj = DbHelperSQL.GetSingle(strSql.ToString(), parameters);
if (obj == null)
{
return 0;
}
else
{
return Convert.ToInt32(obj);
}
}
///
/// 更新一条数据
///
public bool Update(CallCenterApi.Model.submit_RePush model)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("update submit_RePush set ");
strSql.Append("F_Content=@F_Content,");
strSql.Append("F_Url=@F_Url,");
strSql.Append("Code=@Code,");
strSql.Append("CreateTime=@CreateTime,");
strSql.Append("ErrorMsg=@ErrorMsg,");
strSql.Append("Title=@Title,");
strSql.Append("Sequence=@Sequence,");
strSql.Append("number=@number");
strSql.Append(" where F_ID=@F_ID");
SqlParameter[] parameters = {
new SqlParameter("@F_Content", SqlDbType.NVarChar,-1),
new SqlParameter("@F_Url", SqlDbType.NVarChar,500),
new SqlParameter("@Code", SqlDbType.Int,4),
new SqlParameter("@CreateTime", SqlDbType.DateTime),
new SqlParameter("@ErrorMsg", SqlDbType.NVarChar,1000),
new SqlParameter("@Title", SqlDbType.NVarChar,20),
new SqlParameter("@Sequence", SqlDbType.Int,4),
new SqlParameter("@number", SqlDbType.Int,4),
new SqlParameter("@F_ID", SqlDbType.Int,4)};
parameters[0].Value = model.F_Content;
parameters[1].Value = model.F_Url;
parameters[2].Value = model.Code;
parameters[3].Value = model.CreateTime;
parameters[4].Value = model.ErrorMsg;
parameters[5].Value = model.Title;
parameters[6].Value = model.Sequence;
parameters[7].Value = model.number;
parameters[8].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 submit_RePush ");
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 submit_RePush ");
strSql.Append(" where F_ID in (" + F_IDlist + ") ");
int rows = DbHelperSQL.ExecuteSql(strSql.ToString());
if (rows > 0)
{
return true;
}
else
{
return false;
}
}
///
/// 得到一个对象实体
///
public CallCenterApi.Model.submit_RePush GetModel(int F_ID)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("select top 1 F_ID,number,F_Content,F_Url,Code,CreateTime,ErrorMsg,Title,Sequence from submit_RePush ");
strSql.Append(" where F_ID=@F_ID");
SqlParameter[] parameters = {
new SqlParameter("@F_ID", SqlDbType.Int,4)
};
parameters[0].Value = F_ID;
CallCenterApi.Model.submit_RePush model = new CallCenterApi.Model.submit_RePush();
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 CallCenterApi.Model.submit_RePush DataRowToModel(DataRow row)
{
CallCenterApi.Model.submit_RePush model = new CallCenterApi.Model.submit_RePush();
if (row != null)
{
if (row["F_ID"] != null && row["F_ID"].ToString() != "")
{
model.F_ID = int.Parse(row["F_ID"].ToString());
}
if (row["F_Content"] != null)
{
model.F_Content = row["F_Content"].ToString();
}
if (row["F_Url"] != null)
{
model.F_Url = row["F_Url"].ToString();
}
if (row["Code"] != null && row["Code"].ToString() != "")
{
model.Code = int.Parse(row["Code"].ToString());
}
if (row["CreateTime"] != null && row["CreateTime"].ToString() != "")
{
model.CreateTime = DateTime.Parse(row["CreateTime"].ToString());
}
if (row["ErrorMsg"] != null)
{
model.ErrorMsg = row["ErrorMsg"].ToString();
}
if (row["Title"] != null)
{
model.Title = row["Title"].ToString();
}
if (row["Sequence"] != null && row["Sequence"].ToString() != "")
{
model.Sequence = int.Parse(row["Sequence"].ToString());
}
if (row["number"] != null && row["number"].ToString() != "")
{
model.number = int.Parse(row["number"].ToString());
}
}
return model;
}
///
/// 获得数据列表
///
public DataSet GetList(string strWhere)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("select F_ID,F_Content,number,F_Url,Code,CreateTime,ErrorMsg,Title,Sequence ");
strSql.Append(" FROM submit_RePush ");
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,F_Content,F_Url,number,Code,CreateTime,ErrorMsg,Title,Sequence ");
strSql.Append(" FROM submit_RePush ");
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 submit_RePush ");
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 submit_RePush 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 = "submit_RePush";
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 BasicMethod
#region ExtensionMethod
#endregion ExtensionMethod
}
}