/// <summary> /// 更新一条数据 /// </summary> public bool Update(LingLong.Admin.Model.t_reward_goods model) { StringBuilder strSql = new StringBuilder(); strSql.Append("update t_reward_goods set "); strSql.Append("PlanId=@PlanId,"); strSql.Append("GoodsImgUrl=@GoodsImgUrl,"); strSql.Append("GoodsName=@GoodsName,"); strSql.Append("Money=@Money,"); strSql.Append("IsDeleted=@IsDeleted,"); strSql.Append("DeleterUserId=@DeleterUserId,"); strSql.Append("LastModificationTime=@LastModificationTime,"); strSql.Append("LastModifierUserId=@LastModifierUserId,"); strSql.Append("CreationTime=@CreationTime,"); strSql.Append("CreatorUserId=@CreatorUserId"); strSql.Append(" where ID=@ID"); MySqlParameter[] parameters = { new MySqlParameter("@PlanId", MySqlDbType.Int32, 11), new MySqlParameter("@GoodsImgUrl", MySqlDbType.LongText), new MySqlParameter("@GoodsName", MySqlDbType.VarChar, 50), new MySqlParameter("@Money", MySqlDbType.Decimal, 10), 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("@CreatorUserId", MySqlDbType.Int64, 20), new MySqlParameter("@ID", MySqlDbType.Int32, 11) }; parameters[0].Value = model.PlanId; parameters[1].Value = model.GoodsImgUrl; parameters[2].Value = model.GoodsName; parameters[3].Value = model.Money; parameters[4].Value = model.IsDeleted; parameters[5].Value = model.DeleterUserId; parameters[6].Value = model.LastModificationTime; parameters[7].Value = model.LastModifierUserId; parameters[8].Value = model.CreationTime; parameters[9].Value = model.CreatorUserId; parameters[10].Value = model.ID; int rows = DbHelperMySql.ExecuteSql(strSql.ToString(), parameters); if (rows > 0) { return(true); } else { return(false); } }
/// <summary> /// 得到一个对象实体 /// </summary> public LingLong.Admin.Model.t_reward_goods DataRowToModel(DataRow row) { LingLong.Admin.Model.t_reward_goods model = new LingLong.Admin.Model.t_reward_goods(); if (row != null) { if (row["ID"] != null && row["ID"].ToString() != "") { model.ID = int.Parse(row["ID"].ToString()); } if (row["PlanId"] != null && row["PlanId"].ToString() != "") { model.PlanId = int.Parse(row["PlanId"].ToString()); } if (row["GoodsImgUrl"] != null) { model.GoodsImgUrl = row["GoodsImgUrl"].ToString(); } if (row["GoodsName"] != null) { model.GoodsName = row["GoodsName"].ToString(); } if (row["Money"] != null && row["Money"].ToString() != "") { model.Money = decimal.Parse(row["Money"].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()); } if (row["CreatorUserId"] != null && row["CreatorUserId"].ToString() != "") { model.CreatorUserId = long.Parse(row["CreatorUserId"].ToString()); } } return(model); }
/// <summary> /// 增加一条数据 /// </summary> public bool Add(LingLong.Admin.Model.t_reward_goods model) { StringBuilder strSql = new StringBuilder(); strSql.Append("insert into t_reward_goods("); strSql.Append("PlanId,GoodsImgUrl,GoodsName,Money,IsDeleted,DeleterUserId,LastModificationTime,LastModifierUserId,CreationTime,CreatorUserId)"); strSql.Append(" values ("); strSql.Append("@PlanId,@GoodsImgUrl,@GoodsName,@Money,@IsDeleted,@DeleterUserId,@LastModificationTime,@LastModifierUserId,@CreationTime,@CreatorUserId)"); MySqlParameter[] parameters = { new MySqlParameter("@PlanId", MySqlDbType.Int32, 11), new MySqlParameter("@GoodsImgUrl", MySqlDbType.LongText), new MySqlParameter("@GoodsName", MySqlDbType.VarChar, 50), new MySqlParameter("@Money", MySqlDbType.Decimal, 10), 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("@CreatorUserId", MySqlDbType.Int64, 20) }; parameters[0].Value = model.PlanId; parameters[1].Value = model.GoodsImgUrl; parameters[2].Value = model.GoodsName; parameters[3].Value = model.Money; parameters[4].Value = model.IsDeleted; parameters[5].Value = model.DeleterUserId; parameters[6].Value = model.LastModificationTime; parameters[7].Value = model.LastModifierUserId; parameters[8].Value = model.CreationTime; parameters[9].Value = model.CreatorUserId; int rows = DbHelperMySql.ExecuteSql(strSql.ToString(), parameters); if (rows > 0) { return(true); } else { return(false); } }
/// <summary> /// 得到一个对象实体 /// </summary> public LingLong.Admin.Model.t_reward_goods GetModel(int ID) { StringBuilder strSql = new StringBuilder(); strSql.Append("select ID,PlanId,GoodsImgUrl,GoodsName,Money,IsDeleted,DeleterUserId,LastModificationTime,LastModifierUserId,CreationTime,CreatorUserId from t_reward_goods "); strSql.Append(" where ID=@ID"); MySqlParameter[] parameters = { new MySqlParameter("@ID", MySqlDbType.Int32) }; parameters[0].Value = ID; LingLong.Admin.Model.t_reward_goods model = new LingLong.Admin.Model.t_reward_goods(); 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 bool Update(LingLong.Admin.Model.t_reward_goods model) { return(dal.Update(model)); }
/// <summary> /// 增加一条数据 /// </summary> public bool Add(LingLong.Admin.Model.t_reward_goods model) { return(dal.Add(model)); }