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

            strSql.Append("update wx_wq_chexi set ");
            strSql.Append("Id=@Id,");
            strSql.Append("pid=@pid,");
            strSql.Append("pic=@pic,");
            strSql.Append("jName=@jName,");
            strSql.Append("Name=@Name,");
            strSql.Append("remark=@remark,");
            strSql.Append("createdate=@createdate,");
            strSql.Append("sort_id=@sort_id,");
            strSql.Append("wid=@wid");
            strSql.Append(" where ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Id",         SqlDbType.Int,          4),
                new SqlParameter("@pid",        SqlDbType.Int,          4),
                new SqlParameter("@pic",        SqlDbType.VarChar,    500),
                new SqlParameter("@jName",      SqlDbType.VarChar,    500),
                new SqlParameter("@Name",       SqlDbType.VarChar,   4000),
                new SqlParameter("@remark",     SqlDbType.VarChar,   2000),
                new SqlParameter("@createdate", SqlDbType.DateTime),
                new SqlParameter("@sort_id",    SqlDbType.Int,          4),
                new SqlParameter("@wid",        SqlDbType.Int, 4)
            };
            parameters[0].Value = model.Id;
            parameters[1].Value = model.pid;
            parameters[2].Value = model.pic;
            parameters[3].Value = model.jName;
            parameters[4].Value = model.Name;
            parameters[5].Value = model.remark;
            parameters[6].Value = model.createdate;
            parameters[7].Value = model.sort_id;
            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_chexi DataRowToModel(DataRow row)
 {
     MxWeiXinPF.Model.wx_wq_chexi model = new MxWeiXinPF.Model.wx_wq_chexi();
     if (row != null)
     {
         if (row["Id"] != null && row["Id"].ToString() != "")
         {
             model.Id = int.Parse(row["Id"].ToString());
         }
         if (row["pid"] != null && row["pid"].ToString() != "")
         {
             model.pid = int.Parse(row["pid"].ToString());
         }
         if (row["pic"] != null)
         {
             model.pic = row["pic"].ToString();
         }
         if (row["jName"] != null)
         {
             model.jName = row["jName"].ToString();
         }
         if (row["Name"] != null)
         {
             model.Name = row["Name"].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["sort_id"] != null && row["sort_id"].ToString() != "")
         {
             model.sort_id = int.Parse(row["sort_id"].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_chexi model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into wx_wq_chexi(");
            strSql.Append("Id,pid,pic,jName,Name,remark,createdate,sort_id,wid)");
            strSql.Append(" values (");
            strSql.Append("@Id,@pid,@pic,@jName,@Name,@remark,@createdate,@sort_id,@wid)");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Id",         SqlDbType.Int,          4),
                new SqlParameter("@pid",        SqlDbType.Int,          4),
                new SqlParameter("@pic",        SqlDbType.VarChar,    500),
                new SqlParameter("@jName",      SqlDbType.VarChar,    500),
                new SqlParameter("@Name",       SqlDbType.VarChar,   4000),
                new SqlParameter("@remark",     SqlDbType.VarChar,   2000),
                new SqlParameter("@createdate", SqlDbType.DateTime),
                new SqlParameter("@sort_id",    SqlDbType.Int,          4),
                new SqlParameter("@wid",        SqlDbType.Int, 4)
            };
            parameters[0].Value = model.Id;
            parameters[1].Value = model.pid;
            parameters[2].Value = model.pic;
            parameters[3].Value = model.jName;
            parameters[4].Value = model.Name;
            parameters[5].Value = model.remark;
            parameters[6].Value = model.createdate;
            parameters[7].Value = model.sort_id;
            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_chexi GetModel()
        {
            //该表无主键信息,请自定义主键/条件字段
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 Id,pid,pic,jName,Name,remark,createdate,sort_id,wid from wx_wq_chexi ");
            strSql.Append(" where ");
            SqlParameter[] parameters =
            {
            };

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

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