398 lines
10 KiB
C#
398 lines
10 KiB
C#
|
using System;
|
|||
|
using System.Data;
|
|||
|
using System.Text;
|
|||
|
using System.Data.SqlClient;
|
|||
|
using Maticsoft.DBUtility;//Please add references
|
|||
|
namespace Maticsoft.DAL
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 数据访问类:nr_z_scd_cp
|
|||
|
/// </summary>
|
|||
|
public partial class nr_z_scd_cp
|
|||
|
{
|
|||
|
public nr_z_scd_cp()
|
|||
|
{}
|
|||
|
#region BasicMethod
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 得到最大ID
|
|||
|
/// </summary>
|
|||
|
public int GetMaxId()
|
|||
|
{
|
|||
|
return DbHelperSQL.GetMaxID("id", "nr_z_scd_cp");
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 是否存在该记录
|
|||
|
/// </summary>
|
|||
|
public bool Exists(int id)
|
|||
|
{
|
|||
|
StringBuilder strSql=new StringBuilder();
|
|||
|
strSql.Append("select count(1) from nr_z_scd_cp");
|
|||
|
strSql.Append(" where id=@id");
|
|||
|
SqlParameter[] parameters = {
|
|||
|
new SqlParameter("@id", SqlDbType.Int,4)
|
|||
|
};
|
|||
|
parameters[0].Value = id;
|
|||
|
|
|||
|
return DbHelperSQL.Exists(strSql.ToString(),parameters);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 增加一条数据
|
|||
|
/// </summary>
|
|||
|
public int Add(Maticsoft.Model.nr_z_scd_cp model)
|
|||
|
{
|
|||
|
StringBuilder strSql=new StringBuilder();
|
|||
|
strSql.Append("insert into nr_z_scd_cp(");
|
|||
|
strSql.Append("djbh,khbh,cphh,cpmc,zl,scfs,ddsl,tqkc,scsl,jhrq,bz,scdid)");
|
|||
|
strSql.Append(" values (");
|
|||
|
strSql.Append("@djbh,@khbh,@cphh,@cpmc,@zl,@scfs,@ddsl,@tqkc,@scsl,@jhrq,@bz,@scdid)");
|
|||
|
strSql.Append(";select @@IDENTITY");
|
|||
|
SqlParameter[] parameters = {
|
|||
|
new SqlParameter("@djbh", SqlDbType.VarChar,50),
|
|||
|
new SqlParameter("@khbh", SqlDbType.VarChar,50),
|
|||
|
new SqlParameter("@cphh", SqlDbType.VarChar,50),
|
|||
|
new SqlParameter("@cpmc", SqlDbType.VarChar,50),
|
|||
|
new SqlParameter("@zl", SqlDbType.VarChar,50),
|
|||
|
new SqlParameter("@scfs", SqlDbType.VarChar,2000),
|
|||
|
new SqlParameter("@ddsl", SqlDbType.Int,4),
|
|||
|
new SqlParameter("@tqkc", SqlDbType.Int,4),
|
|||
|
new SqlParameter("@scsl", SqlDbType.Int,4),
|
|||
|
new SqlParameter("@jhrq", SqlDbType.DateTime),
|
|||
|
new SqlParameter("@bz", SqlDbType.VarChar,2000),
|
|||
|
new SqlParameter("@scdid", SqlDbType.Int,4)};
|
|||
|
parameters[0].Value = model.djbh;
|
|||
|
parameters[1].Value = model.khbh;
|
|||
|
parameters[2].Value = model.cphh;
|
|||
|
parameters[3].Value = model.cpmc;
|
|||
|
parameters[4].Value = model.zl;
|
|||
|
parameters[5].Value = model.scfs;
|
|||
|
parameters[6].Value = model.ddsl;
|
|||
|
parameters[7].Value = model.tqkc;
|
|||
|
parameters[8].Value = model.scsl;
|
|||
|
parameters[9].Value = model.jhrq;
|
|||
|
parameters[10].Value = model.bz;
|
|||
|
parameters[11].Value = model.scdid;
|
|||
|
|
|||
|
object obj = DbHelperSQL.GetSingle(strSql.ToString(),parameters);
|
|||
|
if (obj == null)
|
|||
|
{
|
|||
|
return 0;
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
return Convert.ToInt32(obj);
|
|||
|
}
|
|||
|
}
|
|||
|
/// <summary>
|
|||
|
/// 更新一条数据
|
|||
|
/// </summary>
|
|||
|
public bool Update(Maticsoft.Model.nr_z_scd_cp model)
|
|||
|
{
|
|||
|
StringBuilder strSql=new StringBuilder();
|
|||
|
strSql.Append("update nr_z_scd_cp set ");
|
|||
|
strSql.Append("djbh=@djbh,");
|
|||
|
strSql.Append("khbh=@khbh,");
|
|||
|
strSql.Append("cphh=@cphh,");
|
|||
|
strSql.Append("cpmc=@cpmc,");
|
|||
|
strSql.Append("zl=@zl,");
|
|||
|
strSql.Append("scfs=@scfs,");
|
|||
|
strSql.Append("ddsl=@ddsl,");
|
|||
|
strSql.Append("tqkc=@tqkc,");
|
|||
|
strSql.Append("scsl=@scsl,");
|
|||
|
strSql.Append("jhrq=@jhrq,");
|
|||
|
strSql.Append("bz=@bz,");
|
|||
|
strSql.Append("scdid=@scdid");
|
|||
|
strSql.Append(" where id=@id");
|
|||
|
SqlParameter[] parameters = {
|
|||
|
new SqlParameter("@djbh", SqlDbType.VarChar,50),
|
|||
|
new SqlParameter("@khbh", SqlDbType.VarChar,50),
|
|||
|
new SqlParameter("@cphh", SqlDbType.VarChar,50),
|
|||
|
new SqlParameter("@cpmc", SqlDbType.VarChar,50),
|
|||
|
new SqlParameter("@zl", SqlDbType.VarChar,50),
|
|||
|
new SqlParameter("@scfs", SqlDbType.VarChar,2000),
|
|||
|
new SqlParameter("@ddsl", SqlDbType.Int,4),
|
|||
|
new SqlParameter("@tqkc", SqlDbType.Int,4),
|
|||
|
new SqlParameter("@scsl", SqlDbType.Int,4),
|
|||
|
new SqlParameter("@jhrq", SqlDbType.DateTime),
|
|||
|
new SqlParameter("@bz", SqlDbType.VarChar,2000),
|
|||
|
new SqlParameter("@scdid", SqlDbType.Int,4),
|
|||
|
new SqlParameter("@id", SqlDbType.Int,4)};
|
|||
|
parameters[0].Value = model.djbh;
|
|||
|
parameters[1].Value = model.khbh;
|
|||
|
parameters[2].Value = model.cphh;
|
|||
|
parameters[3].Value = model.cpmc;
|
|||
|
parameters[4].Value = model.zl;
|
|||
|
parameters[5].Value = model.scfs;
|
|||
|
parameters[6].Value = model.ddsl;
|
|||
|
parameters[7].Value = model.tqkc;
|
|||
|
parameters[8].Value = model.scsl;
|
|||
|
parameters[9].Value = model.jhrq;
|
|||
|
parameters[10].Value = model.bz;
|
|||
|
parameters[11].Value = model.scdid;
|
|||
|
parameters[12].Value = model.id;
|
|||
|
|
|||
|
int rows=DbHelperSQL.ExecuteSql(strSql.ToString(),parameters);
|
|||
|
if (rows > 0)
|
|||
|
{
|
|||
|
return true;
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 删除一条数据
|
|||
|
/// </summary>
|
|||
|
public bool Delete(int id)
|
|||
|
{
|
|||
|
|
|||
|
StringBuilder strSql=new StringBuilder();
|
|||
|
strSql.Append("delete from nr_z_scd_cp ");
|
|||
|
strSql.Append(" where id=@id");
|
|||
|
SqlParameter[] parameters = {
|
|||
|
new SqlParameter("@id", SqlDbType.Int,4)
|
|||
|
};
|
|||
|
parameters[0].Value = id;
|
|||
|
|
|||
|
int rows=DbHelperSQL.ExecuteSql(strSql.ToString(),parameters);
|
|||
|
if (rows > 0)
|
|||
|
{
|
|||
|
return true;
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
/// <summary>
|
|||
|
/// 批量删除数据
|
|||
|
/// </summary>
|
|||
|
public bool DeleteList(string idlist )
|
|||
|
{
|
|||
|
StringBuilder strSql=new StringBuilder();
|
|||
|
strSql.Append("delete from nr_z_scd_cp ");
|
|||
|
strSql.Append(" where id in ("+idlist + ") ");
|
|||
|
int rows=DbHelperSQL.ExecuteSql(strSql.ToString());
|
|||
|
if (rows > 0)
|
|||
|
{
|
|||
|
return true;
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 得到一个对象实体
|
|||
|
/// </summary>
|
|||
|
public Maticsoft.Model.nr_z_scd_cp GetModel(int id)
|
|||
|
{
|
|||
|
|
|||
|
StringBuilder strSql=new StringBuilder();
|
|||
|
strSql.Append("select top 1 id,djbh,khbh,cphh,cpmc,zl,scfs,ddsl,tqkc,scsl,jhrq,bz,scdid from nr_z_scd_cp ");
|
|||
|
strSql.Append(" where id=@id");
|
|||
|
SqlParameter[] parameters = {
|
|||
|
new SqlParameter("@id", SqlDbType.Int,4)
|
|||
|
};
|
|||
|
parameters[0].Value = id;
|
|||
|
|
|||
|
Maticsoft.Model.nr_z_scd_cp model=new Maticsoft.Model.nr_z_scd_cp();
|
|||
|
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 Maticsoft.Model.nr_z_scd_cp DataRowToModel(DataRow row)
|
|||
|
{
|
|||
|
Maticsoft.Model.nr_z_scd_cp model=new Maticsoft.Model.nr_z_scd_cp();
|
|||
|
if (row != null)
|
|||
|
{
|
|||
|
if(row["id"]!=null && row["id"].ToString()!="")
|
|||
|
{
|
|||
|
model.id=int.Parse(row["id"].ToString());
|
|||
|
}
|
|||
|
if(row["djbh"]!=null)
|
|||
|
{
|
|||
|
model.djbh=row["djbh"].ToString();
|
|||
|
}
|
|||
|
if(row["khbh"]!=null)
|
|||
|
{
|
|||
|
model.khbh=row["khbh"].ToString();
|
|||
|
}
|
|||
|
if(row["cphh"]!=null)
|
|||
|
{
|
|||
|
model.cphh=row["cphh"].ToString();
|
|||
|
}
|
|||
|
if(row["cpmc"]!=null)
|
|||
|
{
|
|||
|
model.cpmc=row["cpmc"].ToString();
|
|||
|
}
|
|||
|
if(row["zl"]!=null)
|
|||
|
{
|
|||
|
model.zl=row["zl"].ToString();
|
|||
|
}
|
|||
|
if(row["scfs"]!=null)
|
|||
|
{
|
|||
|
model.scfs=row["scfs"].ToString();
|
|||
|
}
|
|||
|
if(row["ddsl"]!=null && row["ddsl"].ToString()!="")
|
|||
|
{
|
|||
|
model.ddsl=int.Parse(row["ddsl"].ToString());
|
|||
|
}
|
|||
|
if(row["tqkc"]!=null && row["tqkc"].ToString()!="")
|
|||
|
{
|
|||
|
model.tqkc=int.Parse(row["tqkc"].ToString());
|
|||
|
}
|
|||
|
if(row["scsl"]!=null && row["scsl"].ToString()!="")
|
|||
|
{
|
|||
|
model.scsl=int.Parse(row["scsl"].ToString());
|
|||
|
}
|
|||
|
if(row["jhrq"]!=null && row["jhrq"].ToString()!="")
|
|||
|
{
|
|||
|
model.jhrq=DateTime.Parse(row["jhrq"].ToString());
|
|||
|
}
|
|||
|
if(row["bz"]!=null)
|
|||
|
{
|
|||
|
model.bz=row["bz"].ToString();
|
|||
|
}
|
|||
|
if(row["scdid"]!=null && row["scdid"].ToString()!="")
|
|||
|
{
|
|||
|
model.scdid=int.Parse(row["scdid"].ToString());
|
|||
|
}
|
|||
|
}
|
|||
|
return model;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 获得数据列表
|
|||
|
/// </summary>
|
|||
|
public DataSet GetList(string strWhere)
|
|||
|
{
|
|||
|
StringBuilder strSql=new StringBuilder();
|
|||
|
strSql.Append("select id,djbh,khbh,cphh,cpmc,zl,scfs,ddsl,tqkc,scsl,jhrq,bz,scdid ");
|
|||
|
strSql.Append(" FROM nr_z_scd_cp ");
|
|||
|
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(" id,djbh,khbh,cphh,cpmc,zl,scfs,ddsl,tqkc,scsl,jhrq,bz,scdid ");
|
|||
|
strSql.Append(" FROM nr_z_scd_cp ");
|
|||
|
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 nr_z_scd_cp ");
|
|||
|
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.id desc");
|
|||
|
}
|
|||
|
strSql.Append(")AS Row, T.* from nr_z_scd_cp 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());
|
|||
|
}
|
|||
|
|
|||
|
/*
|
|||
|
/// <summary>
|
|||
|
/// 分页获取数据列表
|
|||
|
/// </summary>
|
|||
|
public DataSet GetList(int PageSize,int PageIndex,string strWhere)
|
|||
|
{
|
|||
|
SqlParameter[] parameters = {
|
|||
|
new SqlParameter("@tblName", SqlDbType.VarChar, 255),
|
|||
|
new SqlParameter("@fldName", SqlDbType.VarChar, 255),
|
|||
|
new SqlParameter("@PageSize", SqlDbType.Int),
|
|||
|
new SqlParameter("@PageIndex", SqlDbType.Int),
|
|||
|
new SqlParameter("@IsReCount", SqlDbType.Bit),
|
|||
|
new SqlParameter("@OrderType", SqlDbType.Bit),
|
|||
|
new SqlParameter("@strWhere", SqlDbType.VarChar,1000),
|
|||
|
};
|
|||
|
parameters[0].Value = "nr_z_scd_cp";
|
|||
|
parameters[1].Value = "id";
|
|||
|
parameters[2].Value = PageSize;
|
|||
|
parameters[3].Value = PageIndex;
|
|||
|
parameters[4].Value = 0;
|
|||
|
parameters[5].Value = 0;
|
|||
|
parameters[6].Value = strWhere;
|
|||
|
return DbHelperSQL.RunProcedure("UP_GetRecordByPage",parameters,"ds");
|
|||
|
}*/
|
|||
|
|
|||
|
#endregion BasicMethod
|
|||
|
#region ExtensionMethod
|
|||
|
|
|||
|
#endregion ExtensionMethod
|
|||
|
}
|
|||
|
}
|
|||
|
|