| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- 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
- {
- /// <summary>
- /// 数据访问类:T_Sys_RoleFunction
- /// </summary>
- public partial class T_Sys_RoleFunction
- {
- public T_Sys_RoleFunction()
- { }
- #region BasicMethod
- /// <summary>
- /// 得到最大ID
- /// </summary>
- public int GetMaxId()
- {
- return DbHelperSQL.GetMaxID("F_RoleId", "T_Sys_RoleFunction");
- }
- /// <summary>
- /// 是否存在该记录
- /// </summary>
- 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);
- }
- /// <summary>
- /// 增加一条数据
- /// </summary>
- 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;
- }
- }
- /// <summary>
- /// 更新一条数据
- /// </summary>
- 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;
- }
- }
- /// <summary>
- /// 删除一条数据
- /// </summary>
- 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;
- }
- }
- /// <summary>
- /// 删除一条数据
- /// </summary>
- 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;
- }
- }
- /// <summary>
- /// 得到一个对象实体
- /// </summary>
- 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;
- }
- }
- /// <summary>
- /// 得到一个对象实体
- /// </summary>
- 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;
- }
- /// <summary>
- /// 获得数据列表
- /// </summary>
- 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());
- }
- /// <summary>
- /// 获得前几行数据
- /// </summary>
- 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());
- }
- /// <summary>
- /// 获取记录总数
- /// </summary>
- 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);
- }
- }
- /// <summary>
- /// 分页获取数据列表
- /// </summary>
- 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
- }
- }
|