Example #1
0
        /// <summary>
        /// 对象实体绑定数据
        /// </summary>
        public Lebi_Pro_Type ReaderBind(IDataReader dataReader)
        {
            Lebi_Pro_Type model = new Lebi_Pro_Type();
            object        ojb;

            ojb = dataReader["id"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.id = Convert.ToInt32(ojb);
            }
            model.ImageSmall = dataReader["ImageSmall"].ToString();
            model.ImageUrl   = dataReader["ImageUrl"].ToString();
            ojb = dataReader["IsDel"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.IsDel = Convert.ToInt32(ojb);
            }
            ojb = dataReader["IsIndexShow"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.IsIndexShow = Convert.ToInt32(ojb);
            }
            ojb = dataReader["IsShow"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.IsShow = Convert.ToInt32(ojb);
            }
            model.IsUrlrewrite = dataReader["IsUrlrewrite"].ToString();
            ojb = dataReader["Level"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.Level = Convert.ToInt32(ojb);
            }
            model.Name = dataReader["Name"].ToString();
            ojb        = dataReader["Parentid"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.Parentid = Convert.ToInt32(ojb);
            }
            model.Path            = dataReader["Path"].ToString();
            model.ProPerty131     = dataReader["ProPerty131"].ToString();
            model.ProPerty132     = dataReader["ProPerty132"].ToString();
            model.ProPerty133     = dataReader["ProPerty133"].ToString();
            model.ProPerty134     = dataReader["ProPerty134"].ToString();
            model.SEO_Description = dataReader["SEO_Description"].ToString();
            model.SEO_Keywords    = dataReader["SEO_Keywords"].ToString();
            model.SEO_Title       = dataReader["SEO_Title"].ToString();
            model.Site_ids        = dataReader["Site_ids"].ToString();
            ojb = dataReader["Sort"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.Sort = Convert.ToInt32(ojb);
            }
            model.taobaoid = dataReader["taobaoid"].ToString();
            model.Url      = dataReader["Url"].ToString();
            return(model);
        }
Example #2
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(Lebi_Pro_Type model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into " + TableName + " (");
            strSql.Append(LB.DataAccess.DB.BaseUtilsInstance.ColName("ImageSmall") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("ImageUrl") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("IsDel") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("IsIndexShow") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("IsShow") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("IsUrlrewrite") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Level") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Name") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Parentid") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Path") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("ProPerty131") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("ProPerty132") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("ProPerty133") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("ProPerty134") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("SEO_Description") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("SEO_Keywords") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("SEO_Title") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Site_ids") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Sort") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("taobaoid") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Url") + ")");
            strSql.Append(" values (");
            strSql.Append("@ImageSmall,@ImageUrl,@IsDel,@IsIndexShow,@IsShow,@IsUrlrewrite,@Level,@Name,@Parentid,@Path,@ProPerty131,@ProPerty132,@ProPerty133,@ProPerty134,@SEO_Description,@SEO_Keywords,@SEO_Title,@Site_ids,@Sort,@taobaoid,@Url);select @@identity;");
            SqlParameter[] parameters =
            {
                new SqlParameter("@ImageSmall",      model.ImageSmall),
                new SqlParameter("@ImageUrl",        model.ImageUrl),
                new SqlParameter("@IsDel",           model.IsDel),
                new SqlParameter("@IsIndexShow",     model.IsIndexShow),
                new SqlParameter("@IsShow",          model.IsShow),
                new SqlParameter("@IsUrlrewrite",    model.IsUrlrewrite),
                new SqlParameter("@Level",           model.Level),
                new SqlParameter("@Name",            model.Name),
                new SqlParameter("@Parentid",        model.Parentid),
                new SqlParameter("@Path",            model.Path),
                new SqlParameter("@ProPerty131",     model.ProPerty131),
                new SqlParameter("@ProPerty132",     model.ProPerty132),
                new SqlParameter("@ProPerty133",     model.ProPerty133),
                new SqlParameter("@ProPerty134",     model.ProPerty134),
                new SqlParameter("@SEO_Description", model.SEO_Description),
                new SqlParameter("@SEO_Keywords",    model.SEO_Keywords),
                new SqlParameter("@SEO_Title",       model.SEO_Title),
                new SqlParameter("@Site_ids",        model.Site_ids),
                new SqlParameter("@Sort",            model.Sort),
                new SqlParameter("@taobaoid",        model.taobaoid),
                new SqlParameter("@Url",             model.Url)
            };

            object obj = LB.DataAccess.DB.Instance.TextExecute(strSql.ToString(), parameters);

            if (obj == null)
            {
                return(1);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }
Example #3
0
        /// <summary>
        /// 得到一个对象实体 by where条件
        /// </summary>
        public Lebi_Pro_Type GetModel(string strWhere, int seconds = 0)
        {
            if (strWhere.IndexOf("lbsql{") > 0)
            {
                SQLPara para = new SQLPara(strWhere, "", "");
                return(GetModel(para, seconds));
            }
            string strTableName = TableName;
            string strFieldShow = "*";
            string cachekey     = "";
            string cachestr     = "";

            if (BaseUtils.BaseUtilsInstance.MemcacheInstance != null && seconds > 0)
            {
                cachestr = "select * " + TableName + " where " + strWhere + "|" + seconds;
                cachekey = LB.Tools.Utils.MD5(cachestr);
                var obj = LB.DataAccess.DB.Instance.GetMemchche(cachekey);
                if (obj != null)
                {
                    return(obj as Lebi_Pro_Type);
                }
            }
            Lebi_Pro_Type model = null;

            using (IDataReader dataReader = LB.DataAccess.DB.Instance.TextExecuteReaderOne(strTableName, strFieldShow, strWhere, null))
            {
                if (dataReader == null)
                {
                    return(null);
                }
                while (dataReader.Read())
                {
                    model = ReaderBind(dataReader);
                    if (cachekey != "")
                    {
                        LB.DataAccess.DB.Instance.SetMemchche(cachekey, model, "Lebi_Pro_Type", model.id, cachestr, seconds);
                    }
                    return(model);
                }
            }
            return(null);
        }
Example #4
0
 /// <summary>
 /// 安全方式绑定对象表单
 /// </summary>
 public Lebi_Pro_Type SafeBindForm(Lebi_Pro_Type model)
 {
     if (HttpContext.Current.Request["ImageSmall"] != null)
     {
         model.ImageSmall = LB.Tools.RequestTool.RequestSafeString("ImageSmall");
     }
     if (HttpContext.Current.Request["ImageUrl"] != null)
     {
         model.ImageUrl = LB.Tools.RequestTool.RequestSafeString("ImageUrl");
     }
     if (HttpContext.Current.Request["IsDel"] != null)
     {
         model.IsDel = LB.Tools.RequestTool.RequestInt("IsDel", 0);
     }
     if (HttpContext.Current.Request["IsIndexShow"] != null)
     {
         model.IsIndexShow = LB.Tools.RequestTool.RequestInt("IsIndexShow", 0);
     }
     if (HttpContext.Current.Request["IsShow"] != null)
     {
         model.IsShow = LB.Tools.RequestTool.RequestInt("IsShow", 0);
     }
     if (HttpContext.Current.Request["IsUrlrewrite"] != null)
     {
         model.IsUrlrewrite = LB.Tools.RequestTool.RequestSafeString("IsUrlrewrite");
     }
     if (HttpContext.Current.Request["Level"] != null)
     {
         model.Level = LB.Tools.RequestTool.RequestInt("Level", 0);
     }
     if (HttpContext.Current.Request["Name"] != null)
     {
         model.Name = LB.Tools.RequestTool.RequestSafeString("Name");
     }
     if (HttpContext.Current.Request["Parentid"] != null)
     {
         model.Parentid = LB.Tools.RequestTool.RequestInt("Parentid", 0);
     }
     if (HttpContext.Current.Request["Path"] != null)
     {
         model.Path = LB.Tools.RequestTool.RequestSafeString("Path");
     }
     if (HttpContext.Current.Request["ProPerty131"] != null)
     {
         model.ProPerty131 = LB.Tools.RequestTool.RequestSafeString("ProPerty131");
     }
     if (HttpContext.Current.Request["ProPerty132"] != null)
     {
         model.ProPerty132 = LB.Tools.RequestTool.RequestSafeString("ProPerty132");
     }
     if (HttpContext.Current.Request["ProPerty133"] != null)
     {
         model.ProPerty133 = LB.Tools.RequestTool.RequestSafeString("ProPerty133");
     }
     if (HttpContext.Current.Request["ProPerty134"] != null)
     {
         model.ProPerty134 = LB.Tools.RequestTool.RequestSafeString("ProPerty134");
     }
     if (HttpContext.Current.Request["SEO_Description"] != null)
     {
         model.SEO_Description = LB.Tools.RequestTool.RequestSafeString("SEO_Description");
     }
     if (HttpContext.Current.Request["SEO_Keywords"] != null)
     {
         model.SEO_Keywords = LB.Tools.RequestTool.RequestSafeString("SEO_Keywords");
     }
     if (HttpContext.Current.Request["SEO_Title"] != null)
     {
         model.SEO_Title = LB.Tools.RequestTool.RequestSafeString("SEO_Title");
     }
     if (HttpContext.Current.Request["Site_ids"] != null)
     {
         model.Site_ids = LB.Tools.RequestTool.RequestSafeString("Site_ids");
     }
     if (HttpContext.Current.Request["Sort"] != null)
     {
         model.Sort = LB.Tools.RequestTool.RequestInt("Sort", 0);
     }
     if (HttpContext.Current.Request["taobaoid"] != null)
     {
         model.taobaoid = LB.Tools.RequestTool.RequestSafeString("taobaoid");
     }
     if (HttpContext.Current.Request["Url"] != null)
     {
         model.Url = LB.Tools.RequestTool.RequestSafeString("Url");
     }
     return(model);
 }
Example #5
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public void Update(Lebi_Pro_Type model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update " + TableName + " set ");
            List <string> cols = new List <string>();

            if (("," + model.UpdateCols + ",").IndexOf(",ImageSmall,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("ImageSmall") + "= @ImageSmall");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",ImageUrl,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("ImageUrl") + "= @ImageUrl");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",IsDel,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("IsDel") + "= @IsDel");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",IsIndexShow,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("IsIndexShow") + "= @IsIndexShow");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",IsShow,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("IsShow") + "= @IsShow");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",IsUrlrewrite,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("IsUrlrewrite") + "= @IsUrlrewrite");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Level,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Level") + "= @Level");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Name,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Name") + "= @Name");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Parentid,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Parentid") + "= @Parentid");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Path,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Path") + "= @Path");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",ProPerty131,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("ProPerty131") + "= @ProPerty131");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",ProPerty132,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("ProPerty132") + "= @ProPerty132");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",ProPerty133,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("ProPerty133") + "= @ProPerty133");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",ProPerty134,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("ProPerty134") + "= @ProPerty134");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",SEO_Description,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("SEO_Description") + "= @SEO_Description");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",SEO_Keywords,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("SEO_Keywords") + "= @SEO_Keywords");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",SEO_Title,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("SEO_Title") + "= @SEO_Title");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Site_ids,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Site_ids") + "= @Site_ids");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Sort,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Sort") + "= @Sort");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",taobaoid,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("taobaoid") + "= @taobaoid");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Url,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Url") + "= @Url");
            }
            strSql.Append(string.Join(",", cols));
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@id",              model.id),
                new SqlParameter("@ImageSmall",      model.ImageSmall),
                new SqlParameter("@ImageUrl",        model.ImageUrl),
                new SqlParameter("@IsDel",           model.IsDel),
                new SqlParameter("@IsIndexShow",     model.IsIndexShow),
                new SqlParameter("@IsShow",          model.IsShow),
                new SqlParameter("@IsUrlrewrite",    model.IsUrlrewrite),
                new SqlParameter("@Level",           model.Level),
                new SqlParameter("@Name",            model.Name),
                new SqlParameter("@Parentid",        model.Parentid),
                new SqlParameter("@Path",            model.Path),
                new SqlParameter("@ProPerty131",     model.ProPerty131),
                new SqlParameter("@ProPerty132",     model.ProPerty132),
                new SqlParameter("@ProPerty133",     model.ProPerty133),
                new SqlParameter("@ProPerty134",     model.ProPerty134),
                new SqlParameter("@SEO_Description", model.SEO_Description),
                new SqlParameter("@SEO_Keywords",    model.SEO_Keywords),
                new SqlParameter("@SEO_Title",       model.SEO_Title),
                new SqlParameter("@Site_ids",        model.Site_ids),
                new SqlParameter("@Sort",            model.Sort),
                new SqlParameter("@taobaoid",        model.taobaoid),
                new SqlParameter("@Url",             model.Url)
            };
            LB.DataAccess.DB.Instance.TextExecuteNonQuery(strSql.ToString().Replace(", where id=@id", " where id=@id"), parameters);
        }
Example #6
0
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public static void Update(Lebi_Pro_Type model)
 {
     D_Lebi_Pro_Type.Instance.Update(model);
 }
Example #7
0
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public static int Add(Lebi_Pro_Type model)
 {
     return(D_Lebi_Pro_Type.Instance.Add(model));
 }
Example #8
0
 /// <summary>
 /// 安全方式绑定表单数据
 /// </summary>
 public static Lebi_Pro_Type SafeBindForm(Lebi_Pro_Type model)
 {
     return(D_Lebi_Pro_Type.Instance.SafeBindForm(model));
 }