Example #1
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(Cms.Model.wx_ConcernReply model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update wx_ConcernReply set ");
            strSql.Append("typeid=@typeid,");
            strSql.Append("title=@title,");
            strSql.Append("contents=@contents,");
            strSql.Append("fileurl=@fileurl,");
            strSql.Append("updatetime=@updatetime,");
            strSql.Append("url=@url,");
            strSql.Append("isopen=@isopen,");
            strSql.Append("media_id=@media_id");
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@typeid",     SqlDbType.Int,         4),
                new SqlParameter("@title",      SqlDbType.NVarChar,  100),
                new SqlParameter("@contents",   SqlDbType.Text),
                new SqlParameter("@fileurl",    SqlDbType.NVarChar,  500),
                new SqlParameter("@updatetime", SqlDbType.DateTime),
                new SqlParameter("@url",        SqlDbType.NVarChar,  500),
                new SqlParameter("@isopen",     SqlDbType.Int,         4),
                new SqlParameter("@media_id",   SqlDbType.NVarChar,  100),
                new SqlParameter("@id",         SqlDbType.Int, 4)
            };
            parameters[0].Value = model.typeid;
            parameters[1].Value = model.title;
            parameters[2].Value = model.contents;
            parameters[3].Value = model.fileurl;
            parameters[4].Value = model.updatetime;
            parameters[5].Value = model.url;
            parameters[6].Value = model.isopen;
            parameters[7].Value = model.media_id;
            parameters[8].Value = model.id;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Example #2
0
 /// <summary>
 /// 得到一个对象实体
 /// </summary>
 public Cms.Model.wx_ConcernReply DataRowToModel(DataRow row)
 {
     Cms.Model.wx_ConcernReply model = new Cms.Model.wx_ConcernReply();
     if (row != null)
     {
         if (row["id"] != null && row["id"].ToString() != "")
         {
             model.id = int.Parse(row["id"].ToString());
         }
         if (row["typeid"] != null && row["typeid"].ToString() != "")
         {
             model.typeid = int.Parse(row["typeid"].ToString());
         }
         if (row["title"] != null)
         {
             model.title = row["title"].ToString();
         }
         if (row["contents"] != null)
         {
             model.contents = row["contents"].ToString();
         }
         if (row["fileurl"] != null)
         {
             model.fileurl = row["fileurl"].ToString();
         }
         if (row["updatetime"] != null && row["updatetime"].ToString() != "")
         {
             model.updatetime = DateTime.Parse(row["updatetime"].ToString());
         }
         if (row["url"] != null)
         {
             model.url = row["url"].ToString();
         }
         if (row["isopen"] != null && row["isopen"].ToString() != "")
         {
             model.isopen = int.Parse(row["isopen"].ToString());
         }
         if (row["media_id"] != null)
         {
             model.media_id = row["media_id"].ToString();
         }
     }
     return(model);
 }
Example #3
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(Cms.Model.wx_ConcernReply model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into wx_ConcernReply(");
            strSql.Append("typeid,title,contents,fileurl,updatetime,url,isopen,media_id)");
            strSql.Append(" values (");
            strSql.Append("@typeid,@title,@contents,@fileurl,@updatetime,@url,@isopen,@media_id)");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@typeid",     SqlDbType.Int,         4),
                new SqlParameter("@title",      SqlDbType.NVarChar,  100),
                new SqlParameter("@contents",   SqlDbType.Text),
                new SqlParameter("@fileurl",    SqlDbType.NVarChar,  500),
                new SqlParameter("@updatetime", SqlDbType.DateTime),
                new SqlParameter("@url",        SqlDbType.NVarChar,  500),
                new SqlParameter("@isopen",     SqlDbType.Int,         4),
                new SqlParameter("@media_id",   SqlDbType.NVarChar, 100)
            };
            parameters[0].Value = model.typeid;
            parameters[1].Value = model.title;
            parameters[2].Value = model.contents;
            parameters[3].Value = model.fileurl;
            parameters[4].Value = model.updatetime;
            parameters[5].Value = model.url;
            parameters[6].Value = model.isopen;
            parameters[7].Value = model.media_id;

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

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

            strSql.Append("select  top 1 id,typeid,title,contents,fileurl,updatetime,url,isopen,media_id from wx_ConcernReply ");
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@id", SqlDbType.Int, 4)
            };
            parameters[0].Value = id;

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

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