using System; using System.Text; using System.Data.SqlClient; using System.Collections.Generic; using System.Data; using DSWeb.SoftMng.DBUtility; // ReSharper disable once CheckNamespace namespace DSWeb.SoftMng.DAL { //op_message_config public partial class op_message_configDAL { public bool Exists(string GId) { StringBuilder strSql=new StringBuilder(); strSql.Append("select count(1) from [op_message_config]"); strSql.Append(" where "); strSql.Append(" GId = @GId "); SqlParameter[] parameters = { new SqlParameter("@GId", SqlDbType.VarChar,50) }; parameters[0].Value = GId; return DbHelperSQL.Exists(strSql.ToString(),parameters); } /// /// 增加一条数据 /// public int Add(DSWeb.SoftMng.Model.op_message_config model) { StringBuilder strSql=new StringBuilder(); strSql.Append("insert into [op_message_config]("); strSql.Append("GId,IsPush,UserCode,PId,UpdateTime"); strSql.Append(") values ("); strSql.Append("@GId,@IsPush,@UserCode,@PId,@UpdateTime"); strSql.Append(") "); SqlParameter[] parameters = { new SqlParameter("@GId", SqlDbType.VarChar,50) , new SqlParameter("@IsPush", SqlDbType.Bit,1) , new SqlParameter("@UserCode", SqlDbType.VarChar,50) , new SqlParameter("@PId", SqlDbType.VarChar,50) , new SqlParameter("@UpdateTime", SqlDbType.DateTime) }; parameters[0].Value = model.GId??(Object)DBNull.Value; parameters[1].Value = model.IsPush??(Object)DBNull.Value; parameters[2].Value = model.UserCode??(Object)DBNull.Value; parameters[3].Value = model.PId??(Object)DBNull.Value; parameters[4].Value = model.UpdateTime??(Object)DBNull.Value; return DbHelperSQL.ExecuteSql(strSql.ToString(),parameters); } /// /// 更新一条数据 /// public int Update(DSWeb.SoftMng.Model.op_message_config model) { StringBuilder strSql=new StringBuilder(); strSql.Append("update [op_message_config] set "); strSql.Append(" GId = @GId,"); strSql.Append(" IsPush = @IsPush,"); strSql.Append(" UserCode = @UserCode,"); strSql.Append(" PId = @PId,"); strSql.Append(" UpdateTime = @UpdateTime"); strSql.Append(" where GId=@GId "); SqlParameter[] parameters = { new SqlParameter("@GId", SqlDbType.VarChar,50) , new SqlParameter("@IsPush", SqlDbType.Bit,1) , new SqlParameter("@UserCode", SqlDbType.VarChar,50) , new SqlParameter("@PId", SqlDbType.VarChar,50) , new SqlParameter("@UpdateTime", SqlDbType.DateTime) }; parameters[0].Value = model.GId??(Object)DBNull.Value; parameters[1].Value = model.IsPush??(Object)DBNull.Value; parameters[2].Value = model.UserCode??(Object)DBNull.Value; parameters[3].Value = model.PId??(Object)DBNull.Value; parameters[4].Value = model.UpdateTime??(Object)DBNull.Value; return DbHelperSQL.ExecuteSql(strSql.ToString(),parameters); } /// /// 删除一条数据 /// public int Delete(string GId) { StringBuilder strSql=new StringBuilder(); strSql.Append("delete from [op_message_config] "); strSql.Append(" where GId=@GId "); SqlParameter[] parameters = { new SqlParameter("@GId", SqlDbType.VarChar,50) }; parameters[0].Value = GId; return DbHelperSQL.ExecuteSql(strSql.ToString(),parameters); } /// /// 按条件批量删除 /// public int DeleteListWhere(string strWhere) { StringBuilder strSql=new StringBuilder(); strSql.Append("delete from [op_message_config] "); if(strWhere.Trim()!="") { strSql.Append(" where "+strWhere); } return DbHelperSQL.ExecuteSql(strSql.ToString()); } /// /// 得到一个对象实体 /// public DataSet GetModel(string GId) { StringBuilder strSql=new StringBuilder(); strSql.Append("select GId, IsPush, UserCode, PId, UpdateTime "); strSql.Append(" from [op_message_config] "); strSql.Append(" where GId=@GId "); SqlParameter[] parameters = { new SqlParameter("@GId", SqlDbType.VarChar,50) }; parameters[0].Value = GId; DSWeb.SoftMng.Model.op_message_config model=new DSWeb.SoftMng.Model.op_message_config(); return DbHelperSQL.Query(strSql.ToString(),parameters); } /// /// 获得数据列表 /// public DataSet GetList(string strWhere) { StringBuilder strSql=new StringBuilder(); strSql.Append("select * "); strSql.Append(" FROM [op_message_config] "); 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(" * "); strSql.Append(" FROM [op_message_config] "); if(strWhere.Trim()!="") { strSql.Append(" where "+strWhere); } strSql.Append(" order by " + filedOrder); return DbHelperSQL.Query(strSql.ToString()); } /// /// 分页获取数据列表 /// 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); strSql.Append(")AS Row, T.* from [op_message_config] T "); if (!string.IsNullOrEmpty(strWhere.Trim())) { strSql.Append(" WHERE " + strWhere); } strSql.Append(" ) TT"); strSql.AppendFormat(" WHERE TT.Row > {0} and TT.Row <= {1}", startIndex, endIndex); //公共代码 return DbHelperSQL.Query(strSql.ToString()); } /// /// 获取记录总数 /// public int GetRecordCount(string strWhere) { StringBuilder strSql=new StringBuilder(); strSql.Append("select count(1) FROM [op_message_config] "); if(strWhere.Trim()!="") { strSql.Append(" where "+strWhere); } return DbHelperSQL.ExcuteScalarSQL(strSql.ToString()); } } }