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
{
//DecGoodsLimit
public partial class DecGoodsLimitDAL
{
public bool Exists(string GID)
{
StringBuilder strSql=new StringBuilder();
strSql.Append("select count(1) from DecGoodsLimit");
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.DecGoodsLimit model)
{
StringBuilder strSql=new StringBuilder();
strSql.Append("insert into DecGoodsLimit(");
strSql.Append("GID,GoodsNo,LicTypeCode,LicTypeCode_Text,LicenceNo,LicWrtofDetailNo,LicWrtofQty,PID");
strSql.Append(") values (");
strSql.Append("@GID,@GoodsNo,@LicTypeCode,@LicTypeCode_Text,@LicenceNo,@LicWrtofDetailNo,@LicWrtofQty,@PID");
strSql.Append(") ");
SqlParameter[] parameters = {
new SqlParameter("@GID", SqlDbType.VarChar,50) ,
new SqlParameter("@GoodsNo", SqlDbType.VarChar,50) ,
new SqlParameter("@LicTypeCode", SqlDbType.VarChar,50) ,
new SqlParameter("@LicTypeCode_Text", SqlDbType.NVarChar,50) ,
new SqlParameter("@LicenceNo", SqlDbType.VarChar,50) ,
new SqlParameter("@LicWrtofDetailNo", SqlDbType.VarChar,50) ,
new SqlParameter("@LicWrtofQty", SqlDbType.Int,4) ,
new SqlParameter("@PID", SqlDbType.VarChar,50)
};
parameters[0].Value = model.GID??(Object)DBNull.Value;
parameters[1].Value = model.GoodsNo??(Object)DBNull.Value;
parameters[2].Value = model.LicTypeCode??(Object)DBNull.Value;
parameters[3].Value = model.LicTypeCode_Text??(Object)DBNull.Value;
parameters[4].Value = model.LicenceNo??(Object)DBNull.Value;
parameters[5].Value = model.LicWrtofDetailNo??(Object)DBNull.Value;
parameters[6].Value = model.LicWrtofQty??(Object)DBNull.Value;
parameters[7].Value = model.PID??(Object)DBNull.Value;
return DbHelperSQL.ExecuteSql(strSql.ToString(),parameters);
}
///
/// 更新一条数据
///
public int Update(DSWeb.SoftMng.Model.DecGoodsLimit model)
{
StringBuilder strSql=new StringBuilder();
strSql.Append("update DecGoodsLimit set ");
strSql.Append(" GID = @GID,");
strSql.Append(" GoodsNo = @GoodsNo,");
strSql.Append(" LicTypeCode = @LicTypeCode,");
strSql.Append(" LicTypeCode_Text = @LicTypeCode_Text,");
strSql.Append(" LicenceNo = @LicenceNo,");
strSql.Append(" LicWrtofDetailNo = @LicWrtofDetailNo,");
strSql.Append(" LicWrtofQty = @LicWrtofQty,");
strSql.Append(" PID = @PID");
strSql.Append(" where GID=@GID ");
SqlParameter[] parameters = {
new SqlParameter("@GID", SqlDbType.VarChar,50) ,
new SqlParameter("@GoodsNo", SqlDbType.VarChar,50) ,
new SqlParameter("@LicTypeCode", SqlDbType.VarChar,50) ,
new SqlParameter("@LicTypeCode_Text", SqlDbType.NVarChar,50) ,
new SqlParameter("@LicenceNo", SqlDbType.VarChar,50) ,
new SqlParameter("@LicWrtofDetailNo", SqlDbType.VarChar,50) ,
new SqlParameter("@LicWrtofQty", SqlDbType.Int,4) ,
new SqlParameter("@PID", SqlDbType.VarChar,50)
};
parameters[0].Value = model.GID??(Object)DBNull.Value;
parameters[1].Value = model.GoodsNo??(Object)DBNull.Value;
parameters[2].Value = model.LicTypeCode??(Object)DBNull.Value;
parameters[3].Value = model.LicTypeCode_Text??(Object)DBNull.Value;
parameters[4].Value = model.LicenceNo??(Object)DBNull.Value;
parameters[5].Value = model.LicWrtofDetailNo??(Object)DBNull.Value;
parameters[6].Value = model.LicWrtofQty??(Object)DBNull.Value;
parameters[7].Value = model.PID??(Object)DBNull.Value;
return DbHelperSQL.ExecuteSql(strSql.ToString(),parameters);
}
///
/// 删除一条数据
///
public int Delete(string GID)
{
StringBuilder strSql=new StringBuilder();
strSql.Append("delete from DecGoodsLimit ");
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 DecGoodsLimit ");
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, GoodsNo, LicTypeCode, LicTypeCode_Text, LicenceNo, LicWrtofDetailNo, LicWrtofQty, PID ");
strSql.Append(" from DecGoodsLimit ");
strSql.Append(" where GID=@GID ");
SqlParameter[] parameters = {
new SqlParameter("@GID", SqlDbType.VarChar,50) };
parameters[0].Value = GID;
DSWeb.SoftMng.Model.DecGoodsLimit model=new DSWeb.SoftMng.Model.DecGoodsLimit();
return DbHelperSQL.Query(strSql.ToString(),parameters);
}
///
/// 获得数据列表
///
public DataSet GetList(string strWhere)
{
StringBuilder strSql=new StringBuilder();
strSql.Append("select * ");
strSql.Append(" FROM DecGoodsLimit ");
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 DecGoodsLimit ");
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 DecGoodsLimit 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 DecGoodsLimit ");
if(strWhere.Trim()!="")
{
strSql.Append(" where "+strWhere);
}
return DbHelperSQL.ExcuteScalarSQL(strSql.ToString());
}
}
}