예제 #1
0
파일: C_link.cs 프로젝트: zklve/MallWechat
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(Cms.Model.C_link model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into C_link(");
            strSql.Append("name,picUrl,ishidden,ordernum,linkUrl,note,content,linktype,hits,updateTime,e_name,e_note,e_content,textParam1,textParam2,textParam3,textParam4,textParam5)");
            strSql.Append(" values (");
            strSql.Append("@name,@picUrl,@ishidden,@ordernum,@linkUrl,@note,@content,@linktype,@hits,@updateTime,@e_name,@e_note,@e_content,@textParam1,@textParam2,@textParam3,@textParam4,@textParam5)");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@name",       SqlDbType.VarChar,   -1),
                new SqlParameter("@picUrl",     SqlDbType.VarChar,   -1),
                new SqlParameter("@ishidden",   SqlDbType.Int,        4),
                new SqlParameter("@ordernum",   SqlDbType.Int,        4),
                new SqlParameter("@linkUrl",    SqlDbType.VarChar,   -1),
                new SqlParameter("@note",       SqlDbType.VarChar,   -1),
                new SqlParameter("@content",    SqlDbType.Text),
                new SqlParameter("@linktype",   SqlDbType.VarChar,   50),
                new SqlParameter("@hits",       SqlDbType.Int,        4),
                new SqlParameter("@updateTime", SqlDbType.DateTime),
                new SqlParameter("@e_name",     SqlDbType.VarChar,   -1),
                new SqlParameter("@e_note",     SqlDbType.VarChar,   -1),
                new SqlParameter("@e_content",  SqlDbType.Text),
                new SqlParameter("@textParam1", SqlDbType.VarChar,   -1),
                new SqlParameter("@textParam2", SqlDbType.VarChar,   -1),
                new SqlParameter("@textParam3", SqlDbType.VarChar,   -1),
                new SqlParameter("@textParam4", SqlDbType.VarChar,   -1),
                new SqlParameter("@textParam5", SqlDbType.VarChar, -1)
            };
            parameters[0].Value  = model.name;
            parameters[1].Value  = model.picUrl;
            parameters[2].Value  = model.ishidden;
            parameters[3].Value  = model.ordernum;
            parameters[4].Value  = model.linkUrl;
            parameters[5].Value  = model.note;
            parameters[6].Value  = model.content;
            parameters[7].Value  = model.linktype;
            parameters[8].Value  = model.hits;
            parameters[9].Value  = model.updateTime;
            parameters[10].Value = model.e_name;
            parameters[11].Value = model.e_note;
            parameters[12].Value = model.e_content;
            parameters[13].Value = model.textParam1;
            parameters[14].Value = model.textParam2;
            parameters[15].Value = model.textParam3;
            parameters[16].Value = model.textParam4;
            parameters[17].Value = model.textParam5;

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

            if (obj == null)
            {
                return(0);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }
예제 #2
0
파일: C_link.cs 프로젝트: zklve/MallWechat
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public Cms.Model.C_link GetModel(int id)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 id,name,picUrl,ishidden,ordernum,linkUrl,note,content,linktype,hits,updateTime,e_name,e_note,e_content,textParam1,textParam2,textParam3,textParam4,textParam5 from C_link ");
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@id", SqlDbType.Int, 4)
            };
            parameters[0].Value = id;

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

            if (ds.Tables[0].Rows.Count > 0)
            {
                return(DataRowToModel(ds.Tables[0].Rows[0]));
            }
            else
            {
                return(null);
            }
        }
예제 #3
0
파일: C_link.cs 프로젝트: zklve/MallWechat
 /// <summary>
 /// 得到一个对象实体
 /// </summary>
 public Cms.Model.C_link DataRowToModel(DataRow row)
 {
     Cms.Model.C_link model = new Cms.Model.C_link();
     if (row != null)
     {
         if (row["id"] != null && row["id"].ToString() != "")
         {
             model.id = int.Parse(row["id"].ToString());
         }
         if (row["name"] != null)
         {
             model.name = row["name"].ToString();
         }
         if (row["picUrl"] != null)
         {
             model.picUrl = row["picUrl"].ToString();
         }
         if (row["ishidden"] != null && row["ishidden"].ToString() != "")
         {
             model.ishidden = int.Parse(row["ishidden"].ToString());
         }
         if (row["ordernum"] != null && row["ordernum"].ToString() != "")
         {
             model.ordernum = int.Parse(row["ordernum"].ToString());
         }
         if (row["linkUrl"] != null)
         {
             model.linkUrl = row["linkUrl"].ToString();
         }
         if (row["note"] != null)
         {
             model.note = row["note"].ToString();
         }
         if (row["content"] != null)
         {
             model.content = row["content"].ToString();
         }
         if (row["linktype"] != null)
         {
             model.linktype = row["linktype"].ToString();
         }
         if (row["hits"] != null && row["hits"].ToString() != "")
         {
             model.hits = int.Parse(row["hits"].ToString());
         }
         if (row["updateTime"] != null && row["updateTime"].ToString() != "")
         {
             model.updateTime = DateTime.Parse(row["updateTime"].ToString());
         }
         if (row["e_name"] != null)
         {
             model.e_name = row["e_name"].ToString();
         }
         if (row["e_note"] != null)
         {
             model.e_note = row["e_note"].ToString();
         }
         if (row["e_content"] != null)
         {
             model.e_content = row["e_content"].ToString();
         }
         if (row["textParam1"] != null)
         {
             model.textParam1 = row["textParam1"].ToString();
         }
         if (row["textParam2"] != null)
         {
             model.textParam2 = row["textParam2"].ToString();
         }
         if (row["textParam3"] != null)
         {
             model.textParam3 = row["textParam3"].ToString();
         }
         if (row["textParam4"] != null)
         {
             model.textParam4 = row["textParam4"].ToString();
         }
         if (row["textParam5"] != null)
         {
             model.textParam5 = row["textParam5"].ToString();
         }
     }
     return(model);
 }
예제 #4
0
파일: C_link.cs 프로젝트: zklve/MallWechat
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(Cms.Model.C_link model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update C_link set ");
            strSql.Append("name=@name,");
            strSql.Append("picUrl=@picUrl,");
            strSql.Append("ishidden=@ishidden,");
            strSql.Append("ordernum=@ordernum,");
            strSql.Append("linkUrl=@linkUrl,");
            strSql.Append("note=@note,");
            strSql.Append("content=@content,");
            strSql.Append("linktype=@linktype,");
            strSql.Append("hits=@hits,");
            strSql.Append("updateTime=@updateTime,");
            strSql.Append("e_name=@e_name,");
            strSql.Append("e_note=@e_note,");
            strSql.Append("e_content=@e_content,");
            strSql.Append("textParam1=@textParam1,");
            strSql.Append("textParam2=@textParam2,");
            strSql.Append("textParam3=@textParam3,");
            strSql.Append("textParam4=@textParam4,");
            strSql.Append("textParam5=@textParam5");
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@name",       SqlDbType.VarChar,   -1),
                new SqlParameter("@picUrl",     SqlDbType.VarChar,   -1),
                new SqlParameter("@ishidden",   SqlDbType.Int,        4),
                new SqlParameter("@ordernum",   SqlDbType.Int,        4),
                new SqlParameter("@linkUrl",    SqlDbType.VarChar,   -1),
                new SqlParameter("@note",       SqlDbType.VarChar,   -1),
                new SqlParameter("@content",    SqlDbType.Text),
                new SqlParameter("@linktype",   SqlDbType.VarChar,   50),
                new SqlParameter("@hits",       SqlDbType.Int,        4),
                new SqlParameter("@updateTime", SqlDbType.DateTime),
                new SqlParameter("@e_name",     SqlDbType.VarChar,   -1),
                new SqlParameter("@e_note",     SqlDbType.VarChar,   -1),
                new SqlParameter("@e_content",  SqlDbType.Text),
                new SqlParameter("@textParam1", SqlDbType.VarChar,   -1),
                new SqlParameter("@textParam2", SqlDbType.VarChar,   -1),
                new SqlParameter("@textParam3", SqlDbType.VarChar,   -1),
                new SqlParameter("@textParam4", SqlDbType.VarChar,   -1),
                new SqlParameter("@textParam5", SqlDbType.VarChar,   -1),
                new SqlParameter("@id",         SqlDbType.Int, 4)
            };
            parameters[0].Value  = model.name;
            parameters[1].Value  = model.picUrl;
            parameters[2].Value  = model.ishidden;
            parameters[3].Value  = model.ordernum;
            parameters[4].Value  = model.linkUrl;
            parameters[5].Value  = model.note;
            parameters[6].Value  = model.content;
            parameters[7].Value  = model.linktype;
            parameters[8].Value  = model.hits;
            parameters[9].Value  = model.updateTime;
            parameters[10].Value = model.e_name;
            parameters[11].Value = model.e_note;
            parameters[12].Value = model.e_content;
            parameters[13].Value = model.textParam1;
            parameters[14].Value = model.textParam2;
            parameters[15].Value = model.textParam3;
            parameters[16].Value = model.textParam4;
            parameters[17].Value = model.textParam5;
            parameters[18].Value = model.id;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }