Пример #1
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public bool Add(LingLong.Admin.Model.t_store model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into t_store(");
            strSql.Append("ApplyOpenId,StoreName,PhoneNumber,StoreImgUrl,Area,City,Province,Address,State,Score,IsDeleted,DeleterUserId,LastModificationTime,LastModifierUserId,CreationTime,PlanId)");
            strSql.Append(" values (");
            strSql.Append("@ApplyOpenId,@StoreName,@PhoneNumber,@StoreImgUrl,@Area,@City,@Province,@Address,@State,@Score,@IsDeleted,@DeleterUserId,@LastModificationTime,@LastModifierUserId,@CreationTime,@PlanId)");
            MySqlParameter[] parameters =
            {
                new MySqlParameter("@ApplyOpenId",          MySqlDbType.LongText),
                new MySqlParameter("@StoreName",            MySqlDbType.VarChar,   50),
                new MySqlParameter("@PhoneNumber",          MySqlDbType.VarChar,   20),
                new MySqlParameter("@StoreImgUrl",          MySqlDbType.LongText),
                new MySqlParameter("@Area",                 MySqlDbType.LongText),
                new MySqlParameter("@City",                 MySqlDbType.LongText),
                new MySqlParameter("@Province",             MySqlDbType.LongText),
                new MySqlParameter("@Address",              MySqlDbType.LongText),
                new MySqlParameter("@State",                MySqlDbType.Int16,      4),
                new MySqlParameter("@Score",                MySqlDbType.Float),
                new MySqlParameter("@IsDeleted",            MySqlDbType.Int16,      4),
                new MySqlParameter("@DeleterUserId",        MySqlDbType.Int64,     20),
                new MySqlParameter("@LastModificationTime", MySqlDbType.DateTime),
                new MySqlParameter("@LastModifierUserId",   MySqlDbType.Int64,     20),
                new MySqlParameter("@CreationTime",         MySqlDbType.DateTime),
                new MySqlParameter("@PlanId",               MySqlDbType.Int16, 4)
            };

            parameters[0].Value  = model.ApplyOpenId;
            parameters[1].Value  = model.StoreName;
            parameters[2].Value  = model.PhoneNumber;
            parameters[3].Value  = model.StoreImgUrl;
            parameters[4].Value  = model.Area;
            parameters[5].Value  = model.City;
            parameters[6].Value  = model.Province;
            parameters[7].Value  = model.Address;
            parameters[8].Value  = model.State;
            parameters[9].Value  = model.Score;
            parameters[10].Value = model.IsDeleted;
            parameters[11].Value = model.DeleterUserId;
            parameters[12].Value = model.LastModificationTime;
            parameters[13].Value = model.LastModifierUserId;
            parameters[14].Value = model.CreationTime;
            parameters[15].Value = model.PlanId == 0 ? null : model.PlanId;

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

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

            strSql.Append("select ID,ApplyOpenId,StoreName,PhoneNumber,StoreImgUrl,Area,City,Province,Address,State,Score,IsDeleted,DeleterUserId,LastModificationTime,LastModifierUserId,CreationTime from t_store ");
            strSql.Append(" where ID=@ID");
            MySqlParameter[] parameters =
            {
                new MySqlParameter("@ID", MySqlDbType.Int32)
            };
            parameters[0].Value = ID;

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

            if (ds.Tables[0].Rows.Count > 0)
            {
                return(DataRowToModel(ds.Tables[0].Rows[0]));
            }
            else
            {
                return(null);
            }
        }
Пример #3
0
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public bool Update(LingLong.Admin.Model.t_store model)
 {
     return(dal.Update(model));
 }
Пример #4
0
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public bool Add(LingLong.Admin.Model.t_store model)
 {
     return(dal.Add(model));
 }
Пример #5
0
 /// <summary>
 /// 得到一个对象实体
 /// </summary>
 public LingLong.Admin.Model.t_store DataRowToModel(DataRow row)
 {
     LingLong.Admin.Model.t_store model = new LingLong.Admin.Model.t_store();
     if (row != null)
     {
         if (row["ID"] != null && row["ID"].ToString() != "")
         {
             model.ID = int.Parse(row["ID"].ToString());
         }
         if (row["ApplyOpenId"] != null)
         {
             model.ApplyOpenId = row["ApplyOpenId"].ToString();
         }
         if (row["StoreName"] != null)
         {
             model.StoreName = row["StoreName"].ToString();
         }
         if (row["PhoneNumber"] != null)
         {
             model.PhoneNumber = row["PhoneNumber"].ToString();
         }
         if (row["StoreImgUrl"] != null)
         {
             model.StoreImgUrl = row["StoreImgUrl"].ToString();
         }
         if (row["Area"] != null)
         {
             model.Area = row["Area"].ToString();
         }
         if (row["City"] != null)
         {
             model.City = row["City"].ToString();
         }
         if (row["Province"] != null)
         {
             model.Province = row["Province"].ToString();
         }
         if (row["Address"] != null)
         {
             model.Address = row["Address"].ToString();
         }
         if (row["State"] != null && row["State"].ToString() != "")
         {
             model.State = int.Parse(row["State"].ToString());
         }
         if (row["Score"] != null && row["Score"].ToString() != "")
         {
             model.Score = decimal.Parse(row["Score"].ToString());
         }
         if (row["IsDeleted"] != null && row["IsDeleted"].ToString() != "")
         {
             model.IsDeleted = int.Parse(row["IsDeleted"].ToString());
         }
         if (row["DeleterUserId"] != null && row["DeleterUserId"].ToString() != "")
         {
             model.DeleterUserId = long.Parse(row["DeleterUserId"].ToString());
         }
         if (row["LastModificationTime"] != null && row["LastModificationTime"].ToString() != "")
         {
             model.LastModificationTime = DateTime.Parse(row["LastModificationTime"].ToString());
         }
         if (row["LastModifierUserId"] != null && row["LastModifierUserId"].ToString() != "")
         {
             model.LastModifierUserId = long.Parse(row["LastModifierUserId"].ToString());
         }
         if (row["CreationTime"] != null && row["CreationTime"].ToString() != "")
         {
             model.CreationTime = DateTime.Parse(row["CreationTime"].ToString());
         }
     }
     return(model);
 }
Пример #6
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(LingLong.Admin.Model.t_store model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update t_store set ");
            strSql.Append("ApplyOpenId=@ApplyOpenId,");
            strSql.Append("StoreName=@StoreName,");
            strSql.Append("PhoneNumber=@PhoneNumber,");
            strSql.Append("StoreImgUrl=@StoreImgUrl,");
            strSql.Append("Area=@Area,");
            strSql.Append("City=@City,");
            strSql.Append("Province=@Province,");
            strSql.Append("Address=@Address,");
            strSql.Append("State=@State,");
            strSql.Append("Score=@Score,");
            strSql.Append("IsDeleted=@IsDeleted,");
            strSql.Append("DeleterUserId=@DeleterUserId,");
            strSql.Append("LastModificationTime=@LastModificationTime,");
            strSql.Append("LastModifierUserId=@LastModifierUserId,");
            strSql.Append("CreationTime=@CreationTime,");
            strSql.Append("PlanId=@PlanId");
            strSql.Append(" where ID=@ID");
            MySqlParameter[] parameters =
            {
                new MySqlParameter("@ApplyOpenId",          MySqlDbType.LongText),
                new MySqlParameter("@StoreName",            MySqlDbType.VarChar,   50),
                new MySqlParameter("@PhoneNumber",          MySqlDbType.VarChar,   20),
                new MySqlParameter("@StoreImgUrl",          MySqlDbType.LongText),
                new MySqlParameter("@Area",                 MySqlDbType.LongText),
                new MySqlParameter("@City",                 MySqlDbType.LongText),
                new MySqlParameter("@Province",             MySqlDbType.LongText),
                new MySqlParameter("@Address",              MySqlDbType.LongText),
                new MySqlParameter("@State",                MySqlDbType.Int16,      4),
                new MySqlParameter("@Score",                MySqlDbType.Float),
                new MySqlParameter("@IsDeleted",            MySqlDbType.Int16,      4),
                new MySqlParameter("@DeleterUserId",        MySqlDbType.Int64,     20),
                new MySqlParameter("@LastModificationTime", MySqlDbType.DateTime),
                new MySqlParameter("@LastModifierUserId",   MySqlDbType.Int64,     20),
                new MySqlParameter("@CreationTime",         MySqlDbType.DateTime),
                new MySqlParameter("@PlanId",               MySqlDbType.Int16,      4),
                new MySqlParameter("@ID",                   MySqlDbType.Int32, 11)
            };
            parameters[0].Value  = model.ApplyOpenId;
            parameters[1].Value  = model.StoreName;
            parameters[2].Value  = model.PhoneNumber;
            parameters[3].Value  = model.StoreImgUrl;
            parameters[4].Value  = model.Area;
            parameters[5].Value  = model.City;
            parameters[6].Value  = model.Province;
            parameters[7].Value  = model.Address;
            parameters[8].Value  = model.State;
            parameters[9].Value  = model.Score;
            parameters[10].Value = model.IsDeleted;
            parameters[11].Value = model.DeleterUserId;
            parameters[12].Value = model.LastModificationTime;
            parameters[13].Value = model.LastModifierUserId;
            parameters[14].Value = model.CreationTime;
            parameters[15].Value = model.PlanId == 0 ? null : model.PlanId;
            parameters[16].Value = model.ID;

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

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