using System; using System.Data; using System.Text; using System.Data.SqlClient; using Maticsoft.DBUtility;//Please add references namespace Maticsoft.DAL { /// /// 数据访问类:nr_z_cpck /// public partial class nr_z_cpck { public nr_z_cpck() {} #region BasicMethod /// /// 得到最大ID /// public int GetMaxId() { return DbHelperSQL.GetMaxID("id", "nr_z_cpck"); } /// /// 是否存在该记录 /// public bool Exists(int id) { StringBuilder strSql=new StringBuilder(); strSql.Append("select count(1) from nr_z_cpck"); strSql.Append(" where id=@id"); SqlParameter[] parameters = { new SqlParameter("@id", SqlDbType.Int,4) }; parameters[0].Value = id; return DbHelperSQL.Exists(strSql.ToString(),parameters); } /// /// 增加一条数据 /// public int Add(Maticsoft.Model.nr_z_cpck model) { StringBuilder strSql=new StringBuilder(); strSql.Append("insert into nr_z_cpck("); strSql.Append("ckbh,scdh,khmc,cpbh,cpmc,cpdj,guige,zzsl,lt,sl,lxr,lxdh,danwei,songhuoren,shdizhi,zje,riqi,jsr,shr,beizhu,zt)"); strSql.Append(" values ("); strSql.Append("@ckbh,@scdh,@khmc,@cpbh,@cpmc,@cpdj,@guige,@zzsl,@lt,@sl,@lxr,@lxdh,@danwei,@songhuoren,@shdizhi,@zje,@riqi,@jsr,@shr,@beizhu,@zt)"); strSql.Append(";select @@IDENTITY"); SqlParameter[] parameters = { new SqlParameter("@ckbh", SqlDbType.VarChar,50), new SqlParameter("@scdh", SqlDbType.VarChar,50), new SqlParameter("@khmc", SqlDbType.VarChar,50), new SqlParameter("@cpbh", SqlDbType.VarChar,50), new SqlParameter("@cpmc", SqlDbType.VarChar,50), new SqlParameter("@cpdj", SqlDbType.Decimal,9), new SqlParameter("@guige", SqlDbType.Decimal,9), new SqlParameter("@zzsl", SqlDbType.Int,4), new SqlParameter("@lt", SqlDbType.Decimal,9), new SqlParameter("@sl", SqlDbType.Decimal,9), new SqlParameter("@lxr", SqlDbType.VarChar,50), new SqlParameter("@lxdh", SqlDbType.VarChar,50), new SqlParameter("@danwei", SqlDbType.VarChar,50), new SqlParameter("@songhuoren", SqlDbType.VarChar,50), new SqlParameter("@shdizhi", SqlDbType.VarChar,50), new SqlParameter("@zje", SqlDbType.Decimal,9), new SqlParameter("@riqi", SqlDbType.DateTime), new SqlParameter("@jsr", SqlDbType.VarChar,50), new SqlParameter("@shr", SqlDbType.VarChar,50), new SqlParameter("@beizhu", SqlDbType.VarChar,50), new SqlParameter("@zt", SqlDbType.VarChar,50)}; parameters[0].Value = model.ckbh; parameters[1].Value = model.scdh; parameters[2].Value = model.khmc; parameters[3].Value = model.cpbh; parameters[4].Value = model.cpmc; parameters[5].Value = model.cpdj; parameters[6].Value = model.guige; parameters[7].Value = model.zzsl; parameters[8].Value = model.lt; parameters[9].Value = model.sl; parameters[10].Value = model.lxr; parameters[11].Value = model.lxdh; parameters[12].Value = model.danwei; parameters[13].Value = model.songhuoren; parameters[14].Value = model.shdizhi; parameters[15].Value = model.zje; parameters[16].Value = model.riqi; parameters[17].Value = model.jsr; parameters[18].Value = model.shr; parameters[19].Value = model.beizhu; parameters[20].Value = model.zt; object obj = DbHelperSQL.GetSingle(strSql.ToString(),parameters); if (obj == null) { return 0; } else { return Convert.ToInt32(obj); } } /// /// 更新一条数据 /// public bool Update(Maticsoft.Model.nr_z_cpck model) { StringBuilder strSql=new StringBuilder(); strSql.Append("update nr_z_cpck set "); strSql.Append("ckbh=@ckbh,"); strSql.Append("scdh=@scdh,"); strSql.Append("khmc=@khmc,"); strSql.Append("cpbh=@cpbh,"); strSql.Append("cpmc=@cpmc,"); strSql.Append("cpdj=@cpdj,"); strSql.Append("guige=@guige,"); strSql.Append("zzsl=@zzsl,"); strSql.Append("lt=@lt,"); strSql.Append("sl=@sl,"); strSql.Append("lxr=@lxr,"); strSql.Append("lxdh=@lxdh,"); strSql.Append("danwei=@danwei,"); strSql.Append("songhuoren=@songhuoren,"); strSql.Append("shdizhi=@shdizhi,"); strSql.Append("zje=@zje,"); strSql.Append("riqi=@riqi,"); strSql.Append("jsr=@jsr,"); strSql.Append("shr=@shr,"); strSql.Append("beizhu=@beizhu,"); strSql.Append("zt=@zt"); strSql.Append(" where id=@id"); SqlParameter[] parameters = { new SqlParameter("@ckbh", SqlDbType.VarChar,50), new SqlParameter("@scdh", SqlDbType.VarChar,50), new SqlParameter("@khmc", SqlDbType.VarChar,50), new SqlParameter("@cpbh", SqlDbType.VarChar,50), new SqlParameter("@cpmc", SqlDbType.VarChar,50), new SqlParameter("@cpdj", SqlDbType.Decimal,9), new SqlParameter("@guige", SqlDbType.Decimal,9), new SqlParameter("@zzsl", SqlDbType.Int,4), new SqlParameter("@lt", SqlDbType.Decimal,9), new SqlParameter("@sl", SqlDbType.Decimal,9), new SqlParameter("@lxr", SqlDbType.VarChar,50), new SqlParameter("@lxdh", SqlDbType.VarChar,50), new SqlParameter("@danwei", SqlDbType.VarChar,50), new SqlParameter("@songhuoren", SqlDbType.VarChar,50), new SqlParameter("@shdizhi", SqlDbType.VarChar,50), new SqlParameter("@zje", SqlDbType.Decimal,9), new SqlParameter("@riqi", SqlDbType.DateTime), new SqlParameter("@jsr", SqlDbType.VarChar,50), new SqlParameter("@shr", SqlDbType.VarChar,50), new SqlParameter("@beizhu", SqlDbType.VarChar,50), new SqlParameter("@zt", SqlDbType.VarChar,50), new SqlParameter("@id", SqlDbType.Int,4)}; parameters[0].Value = model.ckbh; parameters[1].Value = model.scdh; parameters[2].Value = model.khmc; parameters[3].Value = model.cpbh; parameters[4].Value = model.cpmc; parameters[5].Value = model.cpdj; parameters[6].Value = model.guige; parameters[7].Value = model.zzsl; parameters[8].Value = model.lt; parameters[9].Value = model.sl; parameters[10].Value = model.lxr; parameters[11].Value = model.lxdh; parameters[12].Value = model.danwei; parameters[13].Value = model.songhuoren; parameters[14].Value = model.shdizhi; parameters[15].Value = model.zje; parameters[16].Value = model.riqi; parameters[17].Value = model.jsr; parameters[18].Value = model.shr; parameters[19].Value = model.beizhu; parameters[20].Value = model.zt; parameters[21].Value = model.id; int rows=DbHelperSQL.ExecuteSql(strSql.ToString(),parameters); if (rows > 0) { return true; } else { return false; } } /// /// 删除一条数据 /// public bool Delete(int id) { StringBuilder strSql=new StringBuilder(); strSql.Append("delete from nr_z_cpck "); 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; } } /// /// 批量删除数据 /// public bool DeleteList(string idlist ) { StringBuilder strSql=new StringBuilder(); strSql.Append("delete from nr_z_cpck "); strSql.Append(" where id in ("+idlist + ") "); int rows=DbHelperSQL.ExecuteSql(strSql.ToString()); if (rows > 0) { return true; } else { return false; } } /// /// 得到一个对象实体 /// public Maticsoft.Model.nr_z_cpck GetModel(int id) { StringBuilder strSql=new StringBuilder(); strSql.Append("select top 1 id,ckbh,scdh,khmc,cpbh,cpmc,cpdj,guige,zzsl,lt,sl,lxr,lxdh,danwei,songhuoren,shdizhi,zje,riqi,jsr,shr,beizhu,zt from nr_z_cpck "); strSql.Append(" where id=@id"); SqlParameter[] parameters = { new SqlParameter("@id", SqlDbType.Int,4) }; parameters[0].Value = id; Maticsoft.Model.nr_z_cpck model=new Maticsoft.Model.nr_z_cpck(); 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 Maticsoft.Model.nr_z_cpck DataRowToModel(DataRow row) { Maticsoft.Model.nr_z_cpck model=new Maticsoft.Model.nr_z_cpck(); if (row != null) { if(row["id"]!=null && row["id"].ToString()!="") { model.id=int.Parse(row["id"].ToString()); } if(row["ckbh"]!=null) { model.ckbh=row["ckbh"].ToString(); } if(row["scdh"]!=null) { model.scdh=row["scdh"].ToString(); } if(row["khmc"]!=null) { model.khmc=row["khmc"].ToString(); } if(row["cpbh"]!=null) { model.cpbh=row["cpbh"].ToString(); } if(row["cpmc"]!=null) { model.cpmc=row["cpmc"].ToString(); } if(row["cpdj"]!=null && row["cpdj"].ToString()!="") { model.cpdj=decimal.Parse(row["cpdj"].ToString()); } if(row["guige"]!=null && row["guige"].ToString()!="") { model.guige=decimal.Parse(row["guige"].ToString()); } if(row["zzsl"]!=null && row["zzsl"].ToString()!="") { model.zzsl=int.Parse(row["zzsl"].ToString()); } if(row["lt"]!=null && row["lt"].ToString()!="") { model.lt=decimal.Parse(row["lt"].ToString()); } if(row["sl"]!=null && row["sl"].ToString()!="") { model.sl=decimal.Parse(row["sl"].ToString()); } if(row["lxr"]!=null) { model.lxr=row["lxr"].ToString(); } if(row["lxdh"]!=null) { model.lxdh=row["lxdh"].ToString(); } if(row["danwei"]!=null) { model.danwei=row["danwei"].ToString(); } if(row["songhuoren"]!=null) { model.songhuoren=row["songhuoren"].ToString(); } if(row["shdizhi"]!=null) { model.shdizhi=row["shdizhi"].ToString(); } if(row["zje"]!=null && row["zje"].ToString()!="") { model.zje=decimal.Parse(row["zje"].ToString()); } if(row["riqi"]!=null && row["riqi"].ToString()!="") { model.riqi=DateTime.Parse(row["riqi"].ToString()); } if(row["jsr"]!=null) { model.jsr=row["jsr"].ToString(); } if(row["shr"]!=null) { model.shr=row["shr"].ToString(); } if(row["beizhu"]!=null) { model.beizhu=row["beizhu"].ToString(); } if(row["zt"]!=null) { model.zt=row["zt"].ToString(); } } return model; } /// /// 获得数据列表 /// public DataSet GetList(string strWhere) { StringBuilder strSql=new StringBuilder(); strSql.Append("select id,ckbh,scdh,khmc,cpbh,cpmc,cpdj,guige,zzsl,lt,sl,lxr,lxdh,danwei,songhuoren,shdizhi,zje,riqi,jsr,shr,beizhu,zt "); strSql.Append(" FROM nr_z_cpck "); 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(" id,ckbh,scdh,khmc,cpbh,cpmc,cpdj,guige,zzsl,lt,sl,lxr,lxdh,danwei,songhuoren,shdizhi,zje,riqi,jsr,shr,beizhu,zt "); strSql.Append(" FROM nr_z_cpck "); 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 nr_z_cpck "); 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.id desc"); } strSql.Append(")AS Row, T.* from nr_z_cpck 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()); } /* /// /// 分页获取数据列表 /// 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_cpck"; 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 } }