Example #1
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(WechatBuilder.Model.wx_diancai_shop_setup model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into wx_diancai_shop_setup(");
            strSql.Append("wid,unionManage,unionTel,createDate,shopid)");
            strSql.Append(" values (");
            strSql.Append("@wid,@unionManage,@unionTel,@createDate,@shopid)");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@wid",         SqlDbType.Int,         4),
                new SqlParameter("@unionManage", SqlDbType.VarChar,   500),
                new SqlParameter("@unionTel",    SqlDbType.VarChar,   100),
                new SqlParameter("@createDate",  SqlDbType.DateTime),
                new SqlParameter("@shopid",      SqlDbType.Int, 4)
            };
            parameters[0].Value = model.wid;
            parameters[1].Value = model.unionManage;
            parameters[2].Value = model.unionTel;
            parameters[3].Value = model.createDate;
            parameters[4].Value = model.shopid;

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

            if (obj == null)
            {
                return(0);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }
Example #2
0
 /// <summary>
 /// 得到一个对象实体
 /// </summary>
 public WechatBuilder.Model.wx_diancai_shop_setup DataRowToModel(DataRow row)
 {
     WechatBuilder.Model.wx_diancai_shop_setup model = new WechatBuilder.Model.wx_diancai_shop_setup();
     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["unionManage"] != null)
         {
             model.unionManage = row["unionManage"].ToString();
         }
         if (row["unionTel"] != null)
         {
             model.unionTel = row["unionTel"].ToString();
         }
         if (row["createDate"] != null && row["createDate"].ToString() != "")
         {
             model.createDate = DateTime.Parse(row["createDate"].ToString());
         }
         if (row["shopid"] != null && row["shopid"].ToString() != "")
         {
             model.shopid = int.Parse(row["shopid"].ToString());
         }
     }
     return(model);
 }
Example #3
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(WechatBuilder.Model.wx_diancai_shop_setup model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update wx_diancai_shop_setup set ");
            strSql.Append("wid=@wid,");
            strSql.Append("unionManage=@unionManage,");
            strSql.Append("unionTel=@unionTel,");
            strSql.Append("createDate=@createDate,");
            strSql.Append("shopid=@shopid");
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@wid",         SqlDbType.Int,         4),
                new SqlParameter("@unionManage", SqlDbType.VarChar,   500),
                new SqlParameter("@unionTel",    SqlDbType.VarChar,   100),
                new SqlParameter("@createDate",  SqlDbType.DateTime),
                new SqlParameter("@shopid",      SqlDbType.Int,         4),
                new SqlParameter("@id",          SqlDbType.Int, 4)
            };
            parameters[0].Value = model.wid;
            parameters[1].Value = model.unionManage;
            parameters[2].Value = model.unionTel;
            parameters[3].Value = model.createDate;
            parameters[4].Value = model.shopid;
            parameters[5].Value = model.id;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Example #4
0
        public WechatBuilder.Model.wx_diancai_shop_setup GetModelset(int shopid)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 id,wid,unionManage,unionTel,createDate,shopid from wx_diancai_shop_setup ");
            strSql.Append(" where shopid=@shopid");
            SqlParameter[] parameters =
            {
                new SqlParameter("@shopid", SqlDbType.Int, 4)
            };
            parameters[0].Value = shopid;

            WechatBuilder.Model.wx_diancai_shop_setup model = new WechatBuilder.Model.wx_diancai_shop_setup();
            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 WechatBuilder.Model.wx_diancai_shop_setup GetModelset(int shopid)
		{
			
			StringBuilder strSql=new StringBuilder();
			strSql.Append("select  top 1 id,wid,unionManage,unionTel,createDate,shopid from wx_diancai_shop_setup ");
            strSql.Append(" where shopid=@shopid");
			SqlParameter[] parameters = {
					new SqlParameter("@shopid", SqlDbType.Int,4)
			};
            parameters[0].Value = shopid;

			WechatBuilder.Model.wx_diancai_shop_setup model=new WechatBuilder.Model.wx_diancai_shop_setup();
			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 WechatBuilder.Model.wx_diancai_shop_setup DataRowToModel(DataRow row)
		{
			WechatBuilder.Model.wx_diancai_shop_setup model=new WechatBuilder.Model.wx_diancai_shop_setup();
			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["unionManage"]!=null)
				{
					model.unionManage=row["unionManage"].ToString();
				}
				if(row["unionTel"]!=null)
				{
					model.unionTel=row["unionTel"].ToString();
				}
				if(row["createDate"]!=null && row["createDate"].ToString()!="")
				{
					model.createDate=DateTime.Parse(row["createDate"].ToString());
				}
				if(row["shopid"]!=null && row["shopid"].ToString()!="")
				{
					model.shopid=int.Parse(row["shopid"].ToString());
				}
			}
			return model;
		}