452 lines
13 KiB
C#
452 lines
13 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_wuliao
|
|||
|
/// </summary>
|
|||
|
public partial class nr_z_wuliao
|
|||
|
{
|
|||
|
public nr_z_wuliao()
|
|||
|
{}
|
|||
|
#region BasicMethod
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 得到最大ID
|
|||
|
/// </summary>
|
|||
|
public int GetMaxId()
|
|||
|
{
|
|||
|
return DbHelperSQL.GetMaxID("id", "nr_z_wuliao");
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 是否存在该记录
|
|||
|
/// </summary>
|
|||
|
public bool Exists(int id)
|
|||
|
{
|
|||
|
StringBuilder strSql=new StringBuilder();
|
|||
|
strSql.Append("select count(1) from nr_z_wuliao");
|
|||
|
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_wuliao model)
|
|||
|
{
|
|||
|
StringBuilder strSql=new StringBuilder();
|
|||
|
strSql.Append("insert into nr_z_wuliao(");
|
|||
|
strSql.Append("wlbh,mingcheng,zhonglei,pinpai,danwei,kufang,kh_bh,zuidkucun,zuigkucun,kucun,baojia,beizhu,riqi,zt,changdu,kuandu,jine,guige)");
|
|||
|
strSql.Append(" values (");
|
|||
|
strSql.Append("@wlbh,@mingcheng,@zhonglei,@pinpai,@danwei,@kufang,@kh_bh,@zuidkucun,@zuigkucun,@kucun,@baojia,@beizhu,@riqi,@zt,@changdu,@kuandu,@jine,@guige)");
|
|||
|
strSql.Append(";select @@IDENTITY");
|
|||
|
SqlParameter[] parameters = {
|
|||
|
new SqlParameter("@wlbh", SqlDbType.VarChar,50),
|
|||
|
new SqlParameter("@mingcheng", SqlDbType.VarChar,2000),
|
|||
|
new SqlParameter("@zhonglei", SqlDbType.Int,4),
|
|||
|
new SqlParameter("@pinpai", SqlDbType.VarChar,200),
|
|||
|
new SqlParameter("@danwei", SqlDbType.Int,4),
|
|||
|
new SqlParameter("@kufang", SqlDbType.VarChar,50),
|
|||
|
new SqlParameter("@kh_bh", SqlDbType.VarChar,2000),
|
|||
|
new SqlParameter("@zuidkucun", SqlDbType.Decimal,9),
|
|||
|
new SqlParameter("@zuigkucun", SqlDbType.Decimal,9),
|
|||
|
new SqlParameter("@kucun", SqlDbType.Decimal,9),
|
|||
|
new SqlParameter("@baojia", SqlDbType.Decimal,9),
|
|||
|
new SqlParameter("@beizhu", SqlDbType.VarChar,2000),
|
|||
|
new SqlParameter("@riqi", SqlDbType.Date,3),
|
|||
|
new SqlParameter("@zt", SqlDbType.Int,4),
|
|||
|
new SqlParameter("@changdu", SqlDbType.Decimal,9),
|
|||
|
new SqlParameter("@kuandu", SqlDbType.Decimal,9),
|
|||
|
new SqlParameter("@jine", SqlDbType.Float,8),
|
|||
|
new SqlParameter("@guige", SqlDbType.VarChar,500)};
|
|||
|
parameters[0].Value = model.wlbh;
|
|||
|
parameters[1].Value = model.mingcheng;
|
|||
|
parameters[2].Value = model.zhonglei;
|
|||
|
parameters[3].Value = model.pinpai;
|
|||
|
parameters[4].Value = model.danwei;
|
|||
|
parameters[5].Value = model.kufang;
|
|||
|
parameters[6].Value = model.kh_bh;
|
|||
|
parameters[7].Value = model.zuidkucun;
|
|||
|
parameters[8].Value = model.zuigkucun;
|
|||
|
parameters[9].Value = model.kucun;
|
|||
|
parameters[10].Value = model.baojia;
|
|||
|
parameters[11].Value = model.beizhu;
|
|||
|
parameters[12].Value = model.riqi;
|
|||
|
parameters[13].Value = model.zt;
|
|||
|
parameters[14].Value = model.changdu;
|
|||
|
parameters[15].Value = model.kuandu;
|
|||
|
parameters[16].Value = model.jine;
|
|||
|
parameters[17].Value = model.guige;
|
|||
|
|
|||
|
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_wuliao model)
|
|||
|
{
|
|||
|
StringBuilder strSql=new StringBuilder();
|
|||
|
strSql.Append("update nr_z_wuliao set ");
|
|||
|
strSql.Append("wlbh=@wlbh,");
|
|||
|
strSql.Append("mingcheng=@mingcheng,");
|
|||
|
strSql.Append("zhonglei=@zhonglei,");
|
|||
|
strSql.Append("pinpai=@pinpai,");
|
|||
|
strSql.Append("danwei=@danwei,");
|
|||
|
strSql.Append("kufang=@kufang,");
|
|||
|
strSql.Append("kh_bh=@kh_bh,");
|
|||
|
strSql.Append("zuidkucun=@zuidkucun,");
|
|||
|
strSql.Append("zuigkucun=@zuigkucun,");
|
|||
|
strSql.Append("kucun=@kucun,");
|
|||
|
strSql.Append("baojia=@baojia,");
|
|||
|
strSql.Append("beizhu=@beizhu,");
|
|||
|
strSql.Append("riqi=@riqi,");
|
|||
|
strSql.Append("zt=@zt,");
|
|||
|
strSql.Append("changdu=@changdu,");
|
|||
|
strSql.Append("kuandu=@kuandu,");
|
|||
|
strSql.Append("jine=@jine,");
|
|||
|
strSql.Append("guige=@guige");
|
|||
|
strSql.Append(" where id=@id");
|
|||
|
SqlParameter[] parameters = {
|
|||
|
new SqlParameter("@wlbh", SqlDbType.VarChar,50),
|
|||
|
new SqlParameter("@mingcheng", SqlDbType.VarChar,2000),
|
|||
|
new SqlParameter("@zhonglei", SqlDbType.Int,4),
|
|||
|
new SqlParameter("@pinpai", SqlDbType.VarChar,200),
|
|||
|
new SqlParameter("@danwei", SqlDbType.Int,4),
|
|||
|
new SqlParameter("@kufang", SqlDbType.VarChar,50),
|
|||
|
new SqlParameter("@kh_bh", SqlDbType.VarChar,2000),
|
|||
|
new SqlParameter("@zuidkucun", SqlDbType.Decimal,9),
|
|||
|
new SqlParameter("@zuigkucun", SqlDbType.Decimal,9),
|
|||
|
new SqlParameter("@kucun", SqlDbType.Decimal,9),
|
|||
|
new SqlParameter("@baojia", SqlDbType.Decimal,9),
|
|||
|
new SqlParameter("@beizhu", SqlDbType.VarChar,2000),
|
|||
|
new SqlParameter("@riqi", SqlDbType.Date,3),
|
|||
|
new SqlParameter("@zt", SqlDbType.Int,4),
|
|||
|
new SqlParameter("@changdu", SqlDbType.Decimal,9),
|
|||
|
new SqlParameter("@kuandu", SqlDbType.Decimal,9),
|
|||
|
new SqlParameter("@jine", SqlDbType.Float,8),
|
|||
|
new SqlParameter("@guige", SqlDbType.VarChar,500),
|
|||
|
new SqlParameter("@id", SqlDbType.Int,4)};
|
|||
|
parameters[0].Value = model.wlbh;
|
|||
|
parameters[1].Value = model.mingcheng;
|
|||
|
parameters[2].Value = model.zhonglei;
|
|||
|
parameters[3].Value = model.pinpai;
|
|||
|
parameters[4].Value = model.danwei;
|
|||
|
parameters[5].Value = model.kufang;
|
|||
|
parameters[6].Value = model.kh_bh;
|
|||
|
parameters[7].Value = model.zuidkucun;
|
|||
|
parameters[8].Value = model.zuigkucun;
|
|||
|
parameters[9].Value = model.kucun;
|
|||
|
parameters[10].Value = model.baojia;
|
|||
|
parameters[11].Value = model.beizhu;
|
|||
|
parameters[12].Value = model.riqi;
|
|||
|
parameters[13].Value = model.zt;
|
|||
|
parameters[14].Value = model.changdu;
|
|||
|
parameters[15].Value = model.kuandu;
|
|||
|
parameters[16].Value = model.jine;
|
|||
|
parameters[17].Value = model.guige;
|
|||
|
parameters[18].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_wuliao ");
|
|||
|
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_wuliao ");
|
|||
|
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_wuliao GetModel(int id)
|
|||
|
{
|
|||
|
|
|||
|
StringBuilder strSql=new StringBuilder();
|
|||
|
strSql.Append("select top 1 id,wlbh,mingcheng,zhonglei,pinpai,danwei,kufang,kh_bh,zuidkucun,zuigkucun,kucun,baojia,beizhu,riqi,zt,changdu,kuandu,jine,guige from nr_z_wuliao ");
|
|||
|
strSql.Append(" where id=@id");
|
|||
|
SqlParameter[] parameters = {
|
|||
|
new SqlParameter("@id", SqlDbType.Int,4)
|
|||
|
};
|
|||
|
parameters[0].Value = id;
|
|||
|
|
|||
|
Maticsoft.Model.nr_z_wuliao model=new Maticsoft.Model.nr_z_wuliao();
|
|||
|
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_wuliao DataRowToModel(DataRow row)
|
|||
|
{
|
|||
|
Maticsoft.Model.nr_z_wuliao model=new Maticsoft.Model.nr_z_wuliao();
|
|||
|
if (row != null)
|
|||
|
{
|
|||
|
if(row["id"]!=null && row["id"].ToString()!="")
|
|||
|
{
|
|||
|
model.id=int.Parse(row["id"].ToString());
|
|||
|
}
|
|||
|
if(row["wlbh"]!=null)
|
|||
|
{
|
|||
|
model.wlbh=row["wlbh"].ToString();
|
|||
|
}
|
|||
|
if(row["mingcheng"]!=null)
|
|||
|
{
|
|||
|
model.mingcheng=row["mingcheng"].ToString();
|
|||
|
}
|
|||
|
if(row["zhonglei"]!=null && row["zhonglei"].ToString()!="")
|
|||
|
{
|
|||
|
model.zhonglei=int.Parse(row["zhonglei"].ToString());
|
|||
|
}
|
|||
|
if(row["pinpai"]!=null)
|
|||
|
{
|
|||
|
model.pinpai=row["pinpai"].ToString();
|
|||
|
}
|
|||
|
if(row["danwei"]!=null && row["danwei"].ToString()!="")
|
|||
|
{
|
|||
|
model.danwei=int.Parse(row["danwei"].ToString());
|
|||
|
}
|
|||
|
if(row["kufang"]!=null)
|
|||
|
{
|
|||
|
model.kufang=row["kufang"].ToString();
|
|||
|
}
|
|||
|
if(row["kh_bh"]!=null)
|
|||
|
{
|
|||
|
model.kh_bh=row["kh_bh"].ToString();
|
|||
|
}
|
|||
|
if(row["zuidkucun"]!=null && row["zuidkucun"].ToString()!="")
|
|||
|
{
|
|||
|
model.zuidkucun=decimal.Parse(row["zuidkucun"].ToString());
|
|||
|
}
|
|||
|
if(row["zuigkucun"]!=null && row["zuigkucun"].ToString()!="")
|
|||
|
{
|
|||
|
model.zuigkucun=decimal.Parse(row["zuigkucun"].ToString());
|
|||
|
}
|
|||
|
if(row["kucun"]!=null && row["kucun"].ToString()!="")
|
|||
|
{
|
|||
|
model.kucun=decimal.Parse(row["kucun"].ToString());
|
|||
|
}
|
|||
|
if(row["baojia"]!=null && row["baojia"].ToString()!="")
|
|||
|
{
|
|||
|
model.baojia=decimal.Parse(row["baojia"].ToString());
|
|||
|
}
|
|||
|
if(row["beizhu"]!=null)
|
|||
|
{
|
|||
|
model.beizhu=row["beizhu"].ToString();
|
|||
|
}
|
|||
|
if(row["riqi"]!=null && row["riqi"].ToString()!="")
|
|||
|
{
|
|||
|
model.riqi=DateTime.Parse(row["riqi"].ToString());
|
|||
|
}
|
|||
|
if(row["zt"]!=null && row["zt"].ToString()!="")
|
|||
|
{
|
|||
|
model.zt=int.Parse(row["zt"].ToString());
|
|||
|
}
|
|||
|
if(row["changdu"]!=null && row["changdu"].ToString()!="")
|
|||
|
{
|
|||
|
model.changdu=decimal.Parse(row["changdu"].ToString());
|
|||
|
}
|
|||
|
if(row["kuandu"]!=null && row["kuandu"].ToString()!="")
|
|||
|
{
|
|||
|
model.kuandu=decimal.Parse(row["kuandu"].ToString());
|
|||
|
}
|
|||
|
if(row["jine"]!=null && row["jine"].ToString()!="")
|
|||
|
{
|
|||
|
model.jine=decimal.Parse(row["jine"].ToString());
|
|||
|
}
|
|||
|
if(row["guige"]!=null)
|
|||
|
{
|
|||
|
model.guige=row["guige"].ToString();
|
|||
|
}
|
|||
|
}
|
|||
|
return model;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 获得数据列表
|
|||
|
/// </summary>
|
|||
|
public DataSet GetList(string strWhere)
|
|||
|
{
|
|||
|
StringBuilder strSql=new StringBuilder();
|
|||
|
strSql.Append("select id,wlbh,mingcheng,zhonglei,pinpai,danwei,kufang,kh_bh,zuidkucun,zuigkucun,kucun,baojia,beizhu,riqi,zt,changdu,kuandu,jine,guige ");
|
|||
|
strSql.Append(" FROM nr_z_wuliao ");
|
|||
|
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,wlbh,mingcheng,zhonglei,pinpai,danwei,kufang,kh_bh,zuidkucun,zuigkucun,kucun,baojia,beizhu,riqi,zt,changdu,kuandu,jine,guige ");
|
|||
|
strSql.Append(" FROM nr_z_wuliao ");
|
|||
|
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_wuliao ");
|
|||
|
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_wuliao 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_wuliao";
|
|||
|
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
|
|||
|
}
|
|||
|
}
|
|||
|
|