You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

191 lines
6.9 KiB
C#

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
{
//sys_CustomColumnsConfig
public partial class sys_CustomColumnsConfigDAL
{
public bool Exists(string GId)
{
StringBuilder strSql=new StringBuilder();
strSql.Append("select count(1) from [sys_CustomColumnsConfig]");
strSql.Append(" where ");
strSql.Append(" GId = @GId ");
SqlParameter[] parameters = {
new SqlParameter("@GId", SqlDbType.NVarChar,50) };
parameters[0].Value = GId;
return DbHelperSQL.Exists(strSql.ToString(),parameters);
}
/// <summary>
/// 增加一条数据
/// </summary>
public int Add(DSWeb.SoftMng.Model.sys_CustomColumnsConfig model)
{
StringBuilder strSql=new StringBuilder();
strSql.Append("insert into [sys_CustomColumnsConfig](");
strSql.Append("GId,NodeName,UserCode,UserConfig");
strSql.Append(") values (");
strSql.Append("@GId,@NodeName,@UserCode,@UserConfig");
strSql.Append(") ");
SqlParameter[] parameters = {
new SqlParameter("@GId", SqlDbType.NVarChar,50) ,
new SqlParameter("@NodeName", SqlDbType.VarChar,50) ,
new SqlParameter("@UserCode", SqlDbType.VarChar,50) ,
new SqlParameter("@UserConfig", SqlDbType.VarChar,1500)
};
parameters[0].Value = model.GId??(Object)DBNull.Value;
parameters[1].Value = model.NodeName??(Object)DBNull.Value;
parameters[2].Value = model.UserCode??(Object)DBNull.Value;
parameters[3].Value = model.UserConfig??(Object)DBNull.Value;
return DbHelperSQL.ExecuteSql(strSql.ToString(),parameters);
}
/// <summary>
/// 更新一条数据
/// </summary>
public int Update(DSWeb.SoftMng.Model.sys_CustomColumnsConfig model)
{
StringBuilder strSql=new StringBuilder();
strSql.Append("update [sys_CustomColumnsConfig] set ");
strSql.Append(" GId = @GId,");
strSql.Append(" NodeName = @NodeName,");
strSql.Append(" UserCode = @UserCode,");
strSql.Append(" UserConfig = @UserConfig");
strSql.Append(" where GId=@GId ");
SqlParameter[] parameters = {
new SqlParameter("@GId", SqlDbType.NVarChar,50) ,
new SqlParameter("@NodeName", SqlDbType.VarChar,50) ,
new SqlParameter("@UserCode", SqlDbType.VarChar,50) ,
new SqlParameter("@UserConfig", SqlDbType.VarChar,1500)
};
parameters[0].Value = model.GId??(Object)DBNull.Value;
parameters[1].Value = model.NodeName??(Object)DBNull.Value;
parameters[2].Value = model.UserCode??(Object)DBNull.Value;
parameters[3].Value = model.UserConfig??(Object)DBNull.Value;
return DbHelperSQL.ExecuteSql(strSql.ToString(),parameters);
}
/// <summary>
/// 删除一条数据
/// </summary>
public int Delete(string GId)
{
StringBuilder strSql=new StringBuilder();
strSql.Append("delete from [sys_CustomColumnsConfig] ");
strSql.Append(" where GId=@GId ");
SqlParameter[] parameters = {
new SqlParameter("@GId", SqlDbType.NVarChar,50) };
parameters[0].Value = GId;
return DbHelperSQL.ExecuteSql(strSql.ToString(),parameters);
}
/// <summary>
/// 按条件批量删除
/// </summary>
public int DeleteListWhere(string strWhere)
{
StringBuilder strSql=new StringBuilder();
strSql.Append("delete from [sys_CustomColumnsConfig] ");
if(strWhere.Trim()!="")
{
strSql.Append(" where "+strWhere);
}
return DbHelperSQL.ExecuteSql(strSql.ToString());
}
/// <summary>
/// 得到一个对象实体
/// </summary>
public DataSet GetModel(string GId)
{
StringBuilder strSql=new StringBuilder();
strSql.Append("select GId, NodeName, UserCode, UserConfig ");
strSql.Append(" from [sys_CustomColumnsConfig] ");
strSql.Append(" where GId=@GId ");
SqlParameter[] parameters = {
new SqlParameter("@GId", SqlDbType.NVarChar,50) };
parameters[0].Value = GId;
DSWeb.SoftMng.Model.sys_CustomColumnsConfig model=new DSWeb.SoftMng.Model.sys_CustomColumnsConfig();
return DbHelperSQL.Query(strSql.ToString(),parameters);
}
/// <summary>
/// 获得数据列表
/// </summary>
public DataSet GetList(string strWhere)
{
StringBuilder strSql=new StringBuilder();
strSql.Append("select * ");
strSql.Append(" FROM [sys_CustomColumnsConfig] ");
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(" * ");
strSql.Append(" FROM [sys_CustomColumnsConfig] ");
if(strWhere.Trim()!="")
{
strSql.Append(" where "+strWhere);
}
strSql.Append(" order by " + filedOrder);
return DbHelperSQL.Query(strSql.ToString());
}
/// <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);
strSql.Append(")AS Row, T.* from [sys_CustomColumnsConfig] 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());
}
/// <summary>
/// 获取记录总数
/// </summary>
public int GetRecordCount(string strWhere)
{
StringBuilder strSql=new StringBuilder();
strSql.Append("select count(1) FROM [sys_CustomColumnsConfig] ");
if(strWhere.Trim()!="")
{
strSql.Append(" where "+strWhere);
}
return DbHelperSQL.ExcuteScalarSQL(strSql.ToString());
}
}
}