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

            strSql.Append("update wx_wq_xiaoshou set ");
            strSql.Append("Id=@Id,");
            strSql.Append("headpic=@headpic,");
            strSql.Append("Name=@Name,");
            strSql.Append("telephone=@telephone,");
            strSql.Append("sort_id=@sort_id,");
            strSql.Append("xsType=@xsType,");
            strSql.Append("remark=@remark,");
            strSql.Append("createdate=@createdate,");
            strSql.Append("wid=@wid");
            strSql.Append(" where ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Id",         SqlDbType.Int,          4),
                new SqlParameter("@headpic",    SqlDbType.VarChar,    500),
                new SqlParameter("@Name",       SqlDbType.VarChar,   4000),
                new SqlParameter("@telephone",  SqlDbType.VarChar,    300),
                new SqlParameter("@sort_id",    SqlDbType.Int,          4),
                new SqlParameter("@xsType",     SqlDbType.VarChar,    300),
                new SqlParameter("@remark",     SqlDbType.VarChar,   2000),
                new SqlParameter("@createdate", SqlDbType.DateTime),
                new SqlParameter("@wid",        SqlDbType.Int, 4)
            };
            parameters[0].Value = model.Id;
            parameters[1].Value = model.headpic;
            parameters[2].Value = model.Name;
            parameters[3].Value = model.telephone;
            parameters[4].Value = model.sort_id;
            parameters[5].Value = model.xsType;
            parameters[6].Value = model.remark;
            parameters[7].Value = model.createdate;
            parameters[8].Value = model.wid;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Ejemplo n.º 2
0
 /// <summary>
 /// 得到一个对象实体
 /// </summary>
 public MxWeiXinPF.Model.wx_wq_xiaoshou DataRowToModel(DataRow row)
 {
     MxWeiXinPF.Model.wx_wq_xiaoshou model = new MxWeiXinPF.Model.wx_wq_xiaoshou();
     if (row != null)
     {
         if (row["Id"] != null && row["Id"].ToString() != "")
         {
             model.Id = int.Parse(row["Id"].ToString());
         }
         if (row["headpic"] != null)
         {
             model.headpic = row["headpic"].ToString();
         }
         if (row["Name"] != null)
         {
             model.Name = row["Name"].ToString();
         }
         if (row["telephone"] != null)
         {
             model.telephone = row["telephone"].ToString();
         }
         if (row["sort_id"] != null && row["sort_id"].ToString() != "")
         {
             model.sort_id = int.Parse(row["sort_id"].ToString());
         }
         if (row["xsType"] != null)
         {
             model.xsType = row["xsType"].ToString();
         }
         if (row["remark"] != null)
         {
             model.remark = row["remark"].ToString();
         }
         if (row["createdate"] != null && row["createdate"].ToString() != "")
         {
             model.createdate = DateTime.Parse(row["createdate"].ToString());
         }
         if (row["wid"] != null && row["wid"].ToString() != "")
         {
             model.wid = int.Parse(row["wid"].ToString());
         }
     }
     return(model);
 }
Ejemplo n.º 3
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public bool Add(MxWeiXinPF.Model.wx_wq_xiaoshou model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into wx_wq_xiaoshou(");
            strSql.Append("Id,headpic,Name,telephone,sort_id,xsType,remark,createdate,wid)");
            strSql.Append(" values (");
            strSql.Append("@Id,@headpic,@Name,@telephone,@sort_id,@xsType,@remark,@createdate,@wid)");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Id",         SqlDbType.Int,          4),
                new SqlParameter("@headpic",    SqlDbType.VarChar,    500),
                new SqlParameter("@Name",       SqlDbType.VarChar,   4000),
                new SqlParameter("@telephone",  SqlDbType.VarChar,    300),
                new SqlParameter("@sort_id",    SqlDbType.Int,          4),
                new SqlParameter("@xsType",     SqlDbType.VarChar,    300),
                new SqlParameter("@remark",     SqlDbType.VarChar,   2000),
                new SqlParameter("@createdate", SqlDbType.DateTime),
                new SqlParameter("@wid",        SqlDbType.Int, 4)
            };
            parameters[0].Value = model.Id;
            parameters[1].Value = model.headpic;
            parameters[2].Value = model.Name;
            parameters[3].Value = model.telephone;
            parameters[4].Value = model.sort_id;
            parameters[5].Value = model.xsType;
            parameters[6].Value = model.remark;
            parameters[7].Value = model.createdate;
            parameters[8].Value = model.wid;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Ejemplo n.º 4
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public MxWeiXinPF.Model.wx_wq_xiaoshou GetModel()
        {
            //该表无主键信息,请自定义主键/条件字段
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 Id,headpic,Name,telephone,sort_id,xsType,remark,createdate,wid from wx_wq_xiaoshou ");
            strSql.Append(" where ");
            SqlParameter[] parameters =
            {
            };

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

            if (ds.Tables[0].Rows.Count > 0)
            {
                return(DataRowToModel(ds.Tables[0].Rows[0]));
            }
            else
            {
                return(null);
            }
        }