/// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(WechatBuilder.Model.wx_sjb_qiudui model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update wx_sjb_qiudui set ");
            strSql.Append("wid=@wid,");
            strSql.Append("qdName=@qdName,");
            strSql.Append("qdPic=@qdPic,");
            strSql.Append("remark=@remark,");
            strSql.Append("succTimes=@succTimes,");
            strSql.Append("failTimes=@failTimes,");
            strSql.Append("sort_id=@sort_id ");
            //strSql.Append("createDate=@createDate");
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@wid",       SqlDbType.Int,        4),
                new SqlParameter("@qdName",    SqlDbType.VarChar,  100),
                new SqlParameter("@qdPic",     SqlDbType.VarChar,  800),
                new SqlParameter("@remark",    SqlDbType.VarChar, 2000),
                new SqlParameter("@succTimes", SqlDbType.Int,        4),
                new SqlParameter("@failTimes", SqlDbType.Int,        4),
                new SqlParameter("@sort_id",   SqlDbType.Int,        4),
                //new SqlParameter("@createDate", SqlDbType.DateTime),
                new SqlParameter("@id",        SqlDbType.Int, 4)
            };
            parameters[0].Value = model.wid;
            parameters[1].Value = model.qdName;
            parameters[2].Value = model.qdPic;
            parameters[3].Value = model.remark;
            parameters[4].Value = model.succTimes;
            parameters[5].Value = model.failTimes;
            parameters[6].Value = model.sort_id;
            //parameters[7].Value = model.createDate;
            parameters[7].Value = model.id;

            int rows = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters);

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
 /// <summary>
 /// 得到一个对象实体
 /// </summary>
 public WechatBuilder.Model.wx_sjb_qiudui DataRowToModel(DataRow row)
 {
     WechatBuilder.Model.wx_sjb_qiudui model = new WechatBuilder.Model.wx_sjb_qiudui();
     if (row != null)
     {
         if (row["id"] != null && row["id"].ToString() != "")
         {
             model.id = int.Parse(row["id"].ToString());
         }
         if (row["wid"] != null && row["wid"].ToString() != "")
         {
             model.wid = int.Parse(row["wid"].ToString());
         }
         if (row["qdName"] != null)
         {
             model.qdName = row["qdName"].ToString();
         }
         if (row["qdPic"] != null)
         {
             model.qdPic = row["qdPic"].ToString();
         }
         if (row["remark"] != null)
         {
             model.remark = row["remark"].ToString();
         }
         if (row["succTimes"] != null && row["succTimes"].ToString() != "")
         {
             model.succTimes = int.Parse(row["succTimes"].ToString());
         }
         if (row["failTimes"] != null && row["failTimes"].ToString() != "")
         {
             model.failTimes = int.Parse(row["failTimes"].ToString());
         }
         if (row["sort_id"] != null && row["sort_id"].ToString() != "")
         {
             model.sort_id = int.Parse(row["sort_id"].ToString());
         }
         if (row["createDate"] != null && row["createDate"].ToString() != "")
         {
             model.createDate = DateTime.Parse(row["createDate"].ToString());
         }
     }
     return(model);
 }
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(WechatBuilder.Model.wx_sjb_qiudui model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into wx_sjb_qiudui(");
            strSql.Append("wid,qdName,qdPic,remark,succTimes,failTimes,sort_id,createDate)");
            strSql.Append(" values (");
            strSql.Append("@wid,@qdName,@qdPic,@remark,@succTimes,@failTimes,@sort_id,@createDate)");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@wid",        SqlDbType.Int,        4),
                new SqlParameter("@qdName",     SqlDbType.VarChar,  100),
                new SqlParameter("@qdPic",      SqlDbType.VarChar,  800),
                new SqlParameter("@remark",     SqlDbType.VarChar, 2000),
                new SqlParameter("@succTimes",  SqlDbType.Int,        4),
                new SqlParameter("@failTimes",  SqlDbType.Int,        4),
                new SqlParameter("@sort_id",    SqlDbType.Int,        4),
                new SqlParameter("@createDate", SqlDbType.DateTime)
            };
            parameters[0].Value = model.wid;
            parameters[1].Value = model.qdName;
            parameters[2].Value = model.qdPic;
            parameters[3].Value = model.remark;
            parameters[4].Value = model.succTimes;
            parameters[5].Value = model.failTimes;
            parameters[6].Value = model.sort_id;
            parameters[7].Value = model.createDate;

            object obj = DbHelperSQL.GetSingle(strSql.ToString(), parameters);

            if (obj == null)
            {
                return(0);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public WechatBuilder.Model.wx_sjb_qiudui GetModel(int id)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 id,wid,qdName,qdPic,remark,succTimes,failTimes,sort_id,createDate from wx_sjb_qiudui ");
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@id", SqlDbType.Int, 4)
            };
            parameters[0].Value = id;

            WechatBuilder.Model.wx_sjb_qiudui model = new WechatBuilder.Model.wx_sjb_qiudui();
            DataSet ds = DbHelperSQL.Query(strSql.ToString(), parameters);

            if (ds.Tables[0].Rows.Count > 0)
            {
                return(DataRowToModel(ds.Tables[0].Rows[0]));
            }
            else
            {
                return(null);
            }
        }
Esempio n. 5
0
		/// <summary>
		/// 得到一个对象实体
		/// </summary>
		public WechatBuilder.Model.wx_sjb_qiudui DataRowToModel(DataRow row)
		{
			WechatBuilder.Model.wx_sjb_qiudui model=new WechatBuilder.Model.wx_sjb_qiudui();
			if (row != null)
			{
				if(row["id"]!=null && row["id"].ToString()!="")
				{
					model.id=int.Parse(row["id"].ToString());
				}
				if(row["wid"]!=null && row["wid"].ToString()!="")
				{
					model.wid=int.Parse(row["wid"].ToString());
				}
				if(row["qdName"]!=null)
				{
					model.qdName=row["qdName"].ToString();
				}
				if(row["qdPic"]!=null)
				{
					model.qdPic=row["qdPic"].ToString();
				}
				if(row["remark"]!=null)
				{
					model.remark=row["remark"].ToString();
				}
				if(row["succTimes"]!=null && row["succTimes"].ToString()!="")
				{
					model.succTimes=int.Parse(row["succTimes"].ToString());
				}
				if(row["failTimes"]!=null && row["failTimes"].ToString()!="")
				{
					model.failTimes=int.Parse(row["failTimes"].ToString());
				}
				if(row["sort_id"]!=null && row["sort_id"].ToString()!="")
				{
					model.sort_id=int.Parse(row["sort_id"].ToString());
				}
				if(row["createDate"]!=null && row["createDate"].ToString()!="")
				{
					model.createDate=DateTime.Parse(row["createDate"].ToString());
				}
			}
			return model;
		}
Esempio n. 6
0
		/// <summary>
		/// 得到一个对象实体
		/// </summary>
		public WechatBuilder.Model.wx_sjb_qiudui GetModel(int id)
		{
			
			StringBuilder strSql=new StringBuilder();
			strSql.Append("select  top 1 id,wid,qdName,qdPic,remark,succTimes,failTimes,sort_id,createDate from wx_sjb_qiudui ");
			strSql.Append(" where id=@id");
			SqlParameter[] parameters = {
					new SqlParameter("@id", SqlDbType.Int,4)
			};
			parameters[0].Value = id;

			WechatBuilder.Model.wx_sjb_qiudui model=new WechatBuilder.Model.wx_sjb_qiudui();
			DataSet ds=DbHelperSQL.Query(strSql.ToString(),parameters);
			if(ds.Tables[0].Rows.Count>0)
			{
				return DataRowToModel(ds.Tables[0].Rows[0]);
			}
			else
			{
				return null;
			}
		}