Exemplo n.º 1
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(WechatBuilder.Model.wx_xt_zhufu model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update wx_xt_zhufu set ");
            strSql.Append("bId=@bId,");
            strSql.Append("openid=@openid,");
            strSql.Append("uName=@uName,");
            strSql.Append("phone=@phone,");
            strSql.Append("message=@message,");
            strSql.Append("createDate=@createDate");
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@bId",        SqlDbType.Int,         4),
                new SqlParameter("@openid",     SqlDbType.VarChar,   200),
                new SqlParameter("@uName",      SqlDbType.VarChar,   100),
                new SqlParameter("@phone",      SqlDbType.VarChar,   100),
                new SqlParameter("@message",    SqlDbType.VarChar,   500),
                new SqlParameter("@createDate", SqlDbType.DateTime),
                new SqlParameter("@id",         SqlDbType.Int, 4)
            };
            parameters[0].Value = model.bId;
            parameters[1].Value = model.openid;
            parameters[2].Value = model.uName;
            parameters[3].Value = model.phone;
            parameters[4].Value = model.message;
            parameters[5].Value = model.createDate;
            parameters[6].Value = model.id;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Exemplo n.º 2
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(WechatBuilder.Model.wx_xt_zhufu model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into wx_xt_zhufu(");
            strSql.Append("bId,openid,uName,phone,message,createDate)");
            strSql.Append(" values (");
            strSql.Append("@bId,@openid,@uName,@phone,@message,@createDate)");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@bId",        SqlDbType.Int,       4),
                new SqlParameter("@openid",     SqlDbType.VarChar, 200),
                new SqlParameter("@uName",      SqlDbType.VarChar, 100),
                new SqlParameter("@phone",      SqlDbType.VarChar, 100),
                new SqlParameter("@message",    SqlDbType.VarChar, 500),
                new SqlParameter("@createDate", SqlDbType.DateTime)
            };
            parameters[0].Value = model.bId;
            parameters[1].Value = model.openid;
            parameters[2].Value = model.uName;
            parameters[3].Value = model.phone;
            parameters[4].Value = model.message;
            parameters[5].Value = model.createDate;

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

            if (obj == null)
            {
                return(0);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }
Exemplo n.º 3
0
 /// <summary>
 /// 得到一个对象实体
 /// </summary>
 public WechatBuilder.Model.wx_xt_zhufu DataRowToModel(DataRow row)
 {
     WechatBuilder.Model.wx_xt_zhufu model = new WechatBuilder.Model.wx_xt_zhufu();
     if (row != null)
     {
         if (row["id"] != null && row["id"].ToString() != "")
         {
             model.id = int.Parse(row["id"].ToString());
         }
         if (row["bId"] != null && row["bId"].ToString() != "")
         {
             model.bId = int.Parse(row["bId"].ToString());
         }
         if (row["openid"] != null)
         {
             model.openid = row["openid"].ToString();
         }
         if (row["uName"] != null)
         {
             model.uName = row["uName"].ToString();
         }
         if (row["phone"] != null)
         {
             model.phone = row["phone"].ToString();
         }
         if (row["message"] != null)
         {
             model.message = row["message"].ToString();
         }
         if (row["createDate"] != null && row["createDate"].ToString() != "")
         {
             model.createDate = DateTime.Parse(row["createDate"].ToString());
         }
     }
     return(model);
 }
Exemplo n.º 4
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public WechatBuilder.Model.wx_xt_zhufu GetModel(int id)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 id,bId,openid,uName,phone,message,createDate from wx_xt_zhufu ");
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@id", SqlDbType.Int, 4)
            };
            parameters[0].Value = id;

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

            if (ds.Tables[0].Rows.Count > 0)
            {
                return(DataRowToModel(ds.Tables[0].Rows[0]));
            }
            else
            {
                return(null);
            }
        }
Exemplo n.º 5
0
		/// <summary>
		/// 得到一个对象实体
		/// </summary>
		public WechatBuilder.Model.wx_xt_zhufu DataRowToModel(DataRow row)
		{
			WechatBuilder.Model.wx_xt_zhufu model=new WechatBuilder.Model.wx_xt_zhufu();
			if (row != null)
			{
				if(row["id"]!=null && row["id"].ToString()!="")
				{
					model.id=int.Parse(row["id"].ToString());
				}
				if(row["bId"]!=null && row["bId"].ToString()!="")
				{
					model.bId=int.Parse(row["bId"].ToString());
				}
				if(row["openid"]!=null)
				{
					model.openid=row["openid"].ToString();
				}
				if(row["uName"]!=null)
				{
					model.uName=row["uName"].ToString();
				}
				if(row["phone"]!=null)
				{
					model.phone=row["phone"].ToString();
				}
				if(row["message"]!=null)
				{
					model.message=row["message"].ToString();
				}
				if(row["createDate"]!=null && row["createDate"].ToString()!="")
				{
					model.createDate=DateTime.Parse(row["createDate"].ToString());
				}
			}
			return model;
		}
Exemplo n.º 6
0
		/// <summary>
		/// 得到一个对象实体
		/// </summary>
		public WechatBuilder.Model.wx_xt_zhufu GetModel(int id)
		{
			
			StringBuilder strSql=new StringBuilder();
			strSql.Append("select  top 1 id,bId,openid,uName,phone,message,createDate from wx_xt_zhufu ");
			strSql.Append(" where id=@id");
			SqlParameter[] parameters = {
					new SqlParameter("@id", SqlDbType.Int,4)
			};
			parameters[0].Value = id;

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