Example #1
0
        /// <summary>
        /// 得到一个对象实体 by where条件
        /// </summary>
        public Lebi_Agent_Money 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_Agent_Money);
                }
            }
            Lebi_Agent_Money 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_Agent_Money", model.id, cachestr, seconds);
                    }
                    return(model);
                }
            }
            return(null);
        }
Example #2
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(Lebi_Agent_Money model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into " + TableName + " (");
            strSql.Append(LB.DataAccess.DB.BaseUtilsInstance.ColName("Area_id") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("DT_id") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Money") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Order_Code") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Order_id") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Product_id") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Product_id_parent") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Product_Number") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Remark") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Supplier_id") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Time_add") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Type_id_AgentMoneyStatus") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Type_id_AgentMoneyType") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("User_id") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("User_UserName") + ")");
            strSql.Append(" values (");
            strSql.Append("@Area_id,@DT_id,@Money,@Order_Code,@Order_id,@Product_id,@Product_id_parent,@Product_Number,@Remark,@Supplier_id,@Time_add,@Type_id_AgentMoneyStatus,@Type_id_AgentMoneyType,@User_id,@User_UserName);select @@identity;");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Area_id",                  model.Area_id),
                new SqlParameter("@DT_id",                    model.DT_id),
                new SqlParameter("@Money",                    model.Money),
                new SqlParameter("@Order_Code",               model.Order_Code),
                new SqlParameter("@Order_id",                 model.Order_id),
                new SqlParameter("@Product_id",               model.Product_id),
                new SqlParameter("@Product_id_parent",        model.Product_id_parent),
                new SqlParameter("@Product_Number",           model.Product_Number),
                new SqlParameter("@Remark",                   model.Remark),
                new SqlParameter("@Supplier_id",              model.Supplier_id),
                new SqlParameter("@Time_add",                 model.Time_add),
                new SqlParameter("@Type_id_AgentMoneyStatus", model.Type_id_AgentMoneyStatus),
                new SqlParameter("@Type_id_AgentMoneyType",   model.Type_id_AgentMoneyType),
                new SqlParameter("@User_id",                  model.User_id),
                new SqlParameter("@User_UserName",            model.User_UserName)
            };

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

            if (obj == null)
            {
                return(1);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }
Example #3
0
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public static void Update(Lebi_Agent_Money model)
 {
     D_Lebi_Agent_Money.Instance.Update(model);
 }
Example #4
0
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public static int Add(Lebi_Agent_Money model)
 {
     return(D_Lebi_Agent_Money.Instance.Add(model));
 }
Example #5
0
 /// <summary>
 /// 安全方式绑定表单数据
 /// </summary>
 public static Lebi_Agent_Money SafeBindForm(Lebi_Agent_Money model)
 {
     return(D_Lebi_Agent_Money.Instance.SafeBindForm(model));
 }
Example #6
0
        /// <summary>
        /// 对象实体绑定数据
        /// </summary>
        public Lebi_Agent_Money ReaderBind(IDataReader dataReader)
        {
            Lebi_Agent_Money model = new Lebi_Agent_Money();
            object           ojb;

            ojb = dataReader["id"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.id = Convert.ToInt32(ojb);
            }
            ojb = dataReader["Area_id"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.Area_id = Convert.ToInt32(ojb);
            }
            ojb = dataReader["DT_id"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.DT_id = Convert.ToInt32(ojb);
            }
            ojb = dataReader["Money"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.Money = (decimal)ojb;
            }
            model.Order_Code = dataReader["Order_Code"].ToString();
            ojb = dataReader["Order_id"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.Order_id = Convert.ToInt32(ojb);
            }
            ojb = dataReader["Product_id"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.Product_id = Convert.ToInt32(ojb);
            }
            ojb = dataReader["Product_id_parent"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.Product_id_parent = Convert.ToInt32(ojb);
            }
            model.Product_Number = dataReader["Product_Number"].ToString();
            model.Remark         = dataReader["Remark"].ToString();
            ojb = dataReader["Supplier_id"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.Supplier_id = Convert.ToInt32(ojb);
            }
            ojb = dataReader["Time_add"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.Time_add = (DateTime)ojb;
            }
            ojb = dataReader["Type_id_AgentMoneyStatus"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.Type_id_AgentMoneyStatus = Convert.ToInt32(ojb);
            }
            ojb = dataReader["Type_id_AgentMoneyType"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.Type_id_AgentMoneyType = Convert.ToInt32(ojb);
            }
            ojb = dataReader["User_id"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.User_id = Convert.ToInt32(ojb);
            }
            model.User_UserName = dataReader["User_UserName"].ToString();
            return(model);
        }
Example #7
0
 /// <summary>
 /// 安全方式绑定对象表单
 /// </summary>
 public Lebi_Agent_Money SafeBindForm(Lebi_Agent_Money model)
 {
     if (HttpContext.Current.Request["Area_id"] != null)
     {
         model.Area_id = LB.Tools.RequestTool.RequestInt("Area_id", 0);
     }
     if (HttpContext.Current.Request["DT_id"] != null)
     {
         model.DT_id = LB.Tools.RequestTool.RequestInt("DT_id", 0);
     }
     if (HttpContext.Current.Request["Money"] != null)
     {
         model.Money = LB.Tools.RequestTool.RequestDecimal("Money", 0);
     }
     if (HttpContext.Current.Request["Order_Code"] != null)
     {
         model.Order_Code = LB.Tools.RequestTool.RequestSafeString("Order_Code");
     }
     if (HttpContext.Current.Request["Order_id"] != null)
     {
         model.Order_id = LB.Tools.RequestTool.RequestInt("Order_id", 0);
     }
     if (HttpContext.Current.Request["Product_id"] != null)
     {
         model.Product_id = LB.Tools.RequestTool.RequestInt("Product_id", 0);
     }
     if (HttpContext.Current.Request["Product_id_parent"] != null)
     {
         model.Product_id_parent = LB.Tools.RequestTool.RequestInt("Product_id_parent", 0);
     }
     if (HttpContext.Current.Request["Product_Number"] != null)
     {
         model.Product_Number = LB.Tools.RequestTool.RequestSafeString("Product_Number");
     }
     if (HttpContext.Current.Request["Remark"] != null)
     {
         model.Remark = LB.Tools.RequestTool.RequestSafeString("Remark");
     }
     if (HttpContext.Current.Request["Supplier_id"] != null)
     {
         model.Supplier_id = LB.Tools.RequestTool.RequestInt("Supplier_id", 0);
     }
     if (HttpContext.Current.Request["Time_add"] != null)
     {
         model.Time_add = LB.Tools.RequestTool.RequestTime("Time_add", System.DateTime.Now);
     }
     if (HttpContext.Current.Request["Type_id_AgentMoneyStatus"] != null)
     {
         model.Type_id_AgentMoneyStatus = LB.Tools.RequestTool.RequestInt("Type_id_AgentMoneyStatus", 0);
     }
     if (HttpContext.Current.Request["Type_id_AgentMoneyType"] != null)
     {
         model.Type_id_AgentMoneyType = LB.Tools.RequestTool.RequestInt("Type_id_AgentMoneyType", 0);
     }
     if (HttpContext.Current.Request["User_id"] != null)
     {
         model.User_id = LB.Tools.RequestTool.RequestInt("User_id", 0);
     }
     if (HttpContext.Current.Request["User_UserName"] != null)
     {
         model.User_UserName = LB.Tools.RequestTool.RequestSafeString("User_UserName");
     }
     return(model);
 }
Example #8
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public void Update(Lebi_Agent_Money model)
        {
            StringBuilder strSql = new StringBuilder();

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

            if (("," + model.UpdateCols + ",").IndexOf(",Area_id,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Area_id") + "= @Area_id");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",DT_id,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("DT_id") + "= @DT_id");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Money,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Money") + "= @Money");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Order_Code,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Order_Code") + "= @Order_Code");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Order_id,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Order_id") + "= @Order_id");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Product_id,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Product_id") + "= @Product_id");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Product_id_parent,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Product_id_parent") + "= @Product_id_parent");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Product_Number,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Product_Number") + "= @Product_Number");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Remark,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Remark") + "= @Remark");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Supplier_id,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Supplier_id") + "= @Supplier_id");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Time_add,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Time_add") + "= @Time_add");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Type_id_AgentMoneyStatus,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Type_id_AgentMoneyStatus") + "= @Type_id_AgentMoneyStatus");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Type_id_AgentMoneyType,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Type_id_AgentMoneyType") + "= @Type_id_AgentMoneyType");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",User_id,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("User_id") + "= @User_id");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",User_UserName,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("User_UserName") + "= @User_UserName");
            }
            strSql.Append(string.Join(",", cols));
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@id",                       model.id),
                new SqlParameter("@Area_id",                  model.Area_id),
                new SqlParameter("@DT_id",                    model.DT_id),
                new SqlParameter("@Money",                    model.Money),
                new SqlParameter("@Order_Code",               model.Order_Code),
                new SqlParameter("@Order_id",                 model.Order_id),
                new SqlParameter("@Product_id",               model.Product_id),
                new SqlParameter("@Product_id_parent",        model.Product_id_parent),
                new SqlParameter("@Product_Number",           model.Product_Number),
                new SqlParameter("@Remark",                   model.Remark),
                new SqlParameter("@Supplier_id",              model.Supplier_id),
                new SqlParameter("@Time_add",                 model.Time_add),
                new SqlParameter("@Type_id_AgentMoneyStatus", model.Type_id_AgentMoneyStatus),
                new SqlParameter("@Type_id_AgentMoneyType",   model.Type_id_AgentMoneyType),
                new SqlParameter("@User_id",                  model.User_id),
                new SqlParameter("@User_UserName",            model.User_UserName)
            };
            LB.DataAccess.DB.Instance.TextExecuteNonQuery(strSql.ToString().Replace(", where id=@id", " where id=@id"), parameters);
        }