/// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(LingLong.Admin.Model.t_store_customer_business model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update t_store_customer_business set ");
            strSql.Append("StoreId=@StoreId,");
            strSql.Append("CustomerId=@CustomerId,");
            strSql.Append("BusinessId=@BusinessId");
            strSql.Append(" where ID=@ID");
            MySqlParameter[] parameters =
            {
                new MySqlParameter("@StoreId",    MySqlDbType.Int32, 11),
                new MySqlParameter("@CustomerId", MySqlDbType.Int32, 11),
                new MySqlParameter("@BusinessId", MySqlDbType.Int32, 11),
                new MySqlParameter("@ID",         MySqlDbType.Int32, 11)
            };
            parameters[0].Value = model.StoreId;
            parameters[1].Value = model.CustomerId;
            parameters[2].Value = model.BusinessId;
            parameters[3].Value = model.ID;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public bool Add(LingLong.Admin.Model.t_store_customer_business model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into t_store_customer_business(");
            strSql.Append("StoreId,CustomerId,BusinessId)");
            strSql.Append(" values (");
            strSql.Append("@StoreId,@CustomerId,@BusinessId)");
            MySqlParameter[] parameters =
            {
                new MySqlParameter("@StoreId",    MySqlDbType.Int32, 11),
                new MySqlParameter("@CustomerId", MySqlDbType.Int32, 11),
                new MySqlParameter("@BusinessId", MySqlDbType.Int32, 11)
            };
            parameters[0].Value = model.StoreId;
            parameters[1].Value = model.CustomerId;
            parameters[2].Value = model.BusinessId;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public LingLong.Admin.Model.t_store_customer_business GetModel(int ID)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select ID,StoreId,CustomerId,BusinessId from t_store_customer_business ");
            strSql.Append(" where ID=@ID");
            MySqlParameter[] parameters =
            {
                new MySqlParameter("@ID", MySqlDbType.Int32)
            };
            parameters[0].Value = ID;

            LingLong.Admin.Model.t_store_customer_business model = new LingLong.Admin.Model.t_store_customer_business();
            DataSet ds = DbHelperMySql.Query(strSql.ToString(), parameters);

            if (ds.Tables[0].Rows.Count > 0)
            {
                return(DataRowToModel(ds.Tables[0].Rows[0]));
            }
            else
            {
                return(null);
            }
        }
 /// <summary>
 /// 得到一个对象实体
 /// </summary>
 public LingLong.Admin.Model.t_store_customer_business DataRowToModel(DataRow row)
 {
     LingLong.Admin.Model.t_store_customer_business model = new LingLong.Admin.Model.t_store_customer_business();
     if (row != null)
     {
         if (row["ID"] != null && row["ID"].ToString() != "")
         {
             model.ID = int.Parse(row["ID"].ToString());
         }
         if (row["StoreId"] != null && row["StoreId"].ToString() != "")
         {
             model.StoreId = int.Parse(row["StoreId"].ToString());
         }
         if (row["CustomerId"] != null && row["CustomerId"].ToString() != "")
         {
             model.CustomerId = int.Parse(row["CustomerId"].ToString());
         }
         if (row["BusinessId"] != null && row["BusinessId"].ToString() != "")
         {
             model.BusinessId = int.Parse(row["BusinessId"].ToString());
         }
     }
     return(model);
 }
示例#5
0
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public bool Update(LingLong.Admin.Model.t_store_customer_business model)
 {
     return(dal.Update(model));
 }