using System; using System.Collections.Generic; using System.Linq; using System.Text; using HySoft.DBUtility; using System.Data; using System.Data.SqlClient; namespace HySoft.BaseCallCenter.DAL { /// /// 数据访问类:T_Sys_RoleFunction /// public partial class T_Sys_RoleFunction { public T_Sys_RoleFunction() { } #region BasicMethod /// /// 得到最大ID /// public int GetMaxId() { return DbHelperSQL.GetMaxID("F_RoleId", "T_Sys_RoleFunction"); } /// /// 是否存在该记录 /// public bool Exists(int F_RoleId, int F_FunctionId) { StringBuilder strSql = new StringBuilder(); strSql.Append("select count(1) from T_Sys_RoleFunction"); strSql.Append(" where F_RoleId=@F_RoleId and F_FunctionId=@F_FunctionId "); SqlParameter[] parameters = { new SqlParameter("@F_RoleId", SqlDbType.Int,4), new SqlParameter("@F_FunctionId", SqlDbType.Int,4) }; parameters[0].Value = F_RoleId; parameters[1].Value = F_FunctionId; return DbHelperSQL.Exists(strSql.ToString(), parameters); } /// /// 增加一条数据 /// public bool Add(HySoft.BaseCallCenter.Model.T_Sys_RoleFunction model) { StringBuilder strSql = new StringBuilder(); strSql.Append("insert into T_Sys_RoleFunction("); strSql.Append("F_RoleId,F_FunctionId,F_IsKey)"); strSql.Append(" values ("); strSql.Append("@F_RoleId,@F_FunctionId,@F_IsKey)"); SqlParameter[] parameters = { new SqlParameter("@F_RoleId", SqlDbType.Int,4), new SqlParameter("@F_FunctionId", SqlDbType.Int,4), new SqlParameter("@F_IsKey", SqlDbType.Int,4)}; parameters[0].Value = model.F_RoleId; parameters[1].Value = model.F_FunctionId; parameters[2].Value = model.F_IsKey; int rows = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters); if (rows > 0) { return true; } else { return false; } } /// /// 更新一条数据 /// public bool Update(HySoft.BaseCallCenter.Model.T_Sys_RoleFunction model) { StringBuilder strSql = new StringBuilder(); strSql.Append("update T_Sys_RoleFunction set "); strSql.Append("F_IsKey=@F_IsKey"); strSql.Append(" where F_RoleId=@F_RoleId and F_FunctionId=@F_FunctionId "); SqlParameter[] parameters = { new SqlParameter("@F_IsKey", SqlDbType.Int,4), new SqlParameter("@F_RoleId", SqlDbType.Int,4), new SqlParameter("@F_FunctionId", SqlDbType.Int,4)}; parameters[0].Value = model.F_IsKey; parameters[1].Value = model.F_RoleId; parameters[2].Value = model.F_FunctionId; int rows = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters); if (rows > 0) { return true; } else { return false; } } /// /// 删除一条数据 /// public bool Delete(int F_RoleId, int F_FunctionId) { StringBuilder strSql = new StringBuilder(); strSql.Append("delete from T_Sys_RoleFunction "); strSql.Append(" where F_RoleId=@F_RoleId and F_FunctionId=@F_FunctionId "); SqlParameter[] parameters = { new SqlParameter("@F_RoleId", SqlDbType.Int,4), new SqlParameter("@F_FunctionId", SqlDbType.Int,4) }; parameters[0].Value = F_RoleId; parameters[1].Value = F_FunctionId; int rows = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters); if (rows > 0) { return true; } else { return false; } } /// /// 删除一条数据 /// public bool Delete1(int F_RoleId) { StringBuilder strSql = new StringBuilder(); strSql.Append("delete from T_Sys_RoleFunction "); strSql.Append(" where F_RoleId=@F_RoleId "); SqlParameter[] parameters = { new SqlParameter("@F_RoleId", SqlDbType.Int,4) }; parameters[0].Value = F_RoleId; int rows = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters); if (rows > 0) { return true; } else { return false; } } /// /// 得到一个对象实体 /// public HySoft.BaseCallCenter.Model.T_Sys_RoleFunction GetModel(int F_RoleId, int F_FunctionId) { StringBuilder strSql = new StringBuilder(); strSql.Append("select top 1 F_RoleId,F_FunctionId,F_IsKey from T_Sys_RoleFunction "); strSql.Append(" where F_RoleId=@F_RoleId and F_FunctionId=@F_FunctionId "); SqlParameter[] parameters = { new SqlParameter("@F_RoleId", SqlDbType.Int,4), new SqlParameter("@F_FunctionId", SqlDbType.Int,4) }; parameters[0].Value = F_RoleId; parameters[1].Value = F_FunctionId; HySoft.BaseCallCenter.Model.T_Sys_RoleFunction model = new HySoft.BaseCallCenter.Model.T_Sys_RoleFunction(); 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 HySoft.BaseCallCenter.Model.T_Sys_RoleFunction DataRowToModel(DataRow row) { HySoft.BaseCallCenter.Model.T_Sys_RoleFunction model = new HySoft.BaseCallCenter.Model.T_Sys_RoleFunction(); if (row != null) { if (row["F_RoleId"] != null && row["F_RoleId"].ToString() != "") { model.F_RoleId = int.Parse(row["F_RoleId"].ToString()); } if (row["F_FunctionId"] != null && row["F_FunctionId"].ToString() != "") { model.F_FunctionId = int.Parse(row["F_FunctionId"].ToString()); } if (row["F_IsKey"] != null && row["F_IsKey"].ToString() != "") { model.F_IsKey = int.Parse(row["F_IsKey"].ToString()); } } return model; } /// /// 获得数据列表 /// public DataSet GetList(string strWhere) { StringBuilder strSql = new StringBuilder(); strSql.Append("select F_RoleId,F_FunctionId,F_IsKey "); strSql.Append(" FROM T_Sys_RoleFunction "); 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_RoleId,F_FunctionId,F_IsKey "); strSql.Append(" FROM T_Sys_RoleFunction "); 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_RoleFunction "); 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_FunctionId desc"); } strSql.Append(")AS Row, T.* from T_Sys_RoleFunction 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 } }