Ejemplo n.º 1
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(CdHotelManage.Model.cprotocolPrice model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update cprotocolPrice set ");
            strSql.Append("Accounts=@Accounts,");
            strSql.Append("RoomType=@RoomType,");
            strSql.Append("Price=@Price,");
            strSql.Append("protoPrice=@protoPrice,");
            strSql.Append("mothPrice=@mothPrice,");
            strSql.Append("zdPrice=@zdPrice,");
            strSql.Append("lcPrice=@lcPrice,");
            strSql.Append("Breakfast=@Breakfast,");
            strSql.Append("commission=@commission,");
            strSql.Append("CpID=@CpID");
            strSql.Append(" where ID=@ID");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Accounts",   SqlDbType.NVarChar, 50),
                new SqlParameter("@RoomType",   SqlDbType.Int,       4),
                new SqlParameter("@Price",      SqlDbType.Int,       4),
                new SqlParameter("@protoPrice", SqlDbType.Int,       4),
                new SqlParameter("@mothPrice",  SqlDbType.Int,       4),
                new SqlParameter("@zdPrice",    SqlDbType.Float,     4),
                new SqlParameter("@lcPrice",    SqlDbType.Int,       4),
                new SqlParameter("@Breakfast",  SqlDbType.Int,       4),
                new SqlParameter("@commission", SqlDbType.Int,       4),
                new SqlParameter("@CpID",       SqlDbType.Int,       4),
                new SqlParameter("@ID",         SqlDbType.Int, 4)
            };
            parameters[0].Value  = model.Accounts;
            parameters[1].Value  = model.RoomType;
            parameters[2].Value  = model.Price;
            parameters[3].Value  = model.protoPrice;
            parameters[4].Value  = model.mothPrice;
            parameters[5].Value  = model.zdPrice;
            parameters[6].Value  = model.lcPrice;
            parameters[7].Value  = model.Breakfast;
            parameters[8].Value  = model.commission;
            parameters[9].Value  = model.CpID;
            parameters[10].Value = model.ID;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Ejemplo n.º 2
0
 /// <summary>
 /// 得到一个对象实体
 /// </summary>
 public CdHotelManage.Model.cprotocolPrice DataRowToModel(DataRow row)
 {
     CdHotelManage.Model.cprotocolPrice model = new CdHotelManage.Model.cprotocolPrice();
     if (row != null)
     {
         if (row["ID"] != null && row["ID"].ToString() != "")
         {
             model.ID = int.Parse(row["ID"].ToString());
         }
         if (row["Accounts"] != null)
         {
             model.Accounts = row["Accounts"].ToString();
         }
         if (row["RoomType"] != null && row["RoomType"].ToString() != "")
         {
             model.RoomType = int.Parse(row["RoomType"].ToString());
         }
         if (row["Price"] != null && row["Price"].ToString() != "")
         {
             model.Price = int.Parse(row["Price"].ToString());
         }
         if (row["protoPrice"] != null && row["protoPrice"].ToString() != "")
         {
             model.protoPrice = int.Parse(row["protoPrice"].ToString());
         }
         if (row["mothPrice"] != null && row["mothPrice"].ToString() != "")
         {
             model.mothPrice = int.Parse(row["mothPrice"].ToString());
         }
         if (row["zdPrice"] != null && row["zdPrice"].ToString() != "")
         {
             model.zdPrice = float.Parse(row["zdPrice"].ToString());
         }
         if (row["lcPrice"] != null && row["lcPrice"].ToString() != "")
         {
             model.lcPrice = int.Parse(row["lcPrice"].ToString());
         }
         if (row["Breakfast"] != null && row["Breakfast"].ToString() != "")
         {
             model.Breakfast = int.Parse(row["Breakfast"].ToString());
         }
         if (row["commission"] != null && row["commission"].ToString() != "")
         {
             model.commission = int.Parse(row["commission"].ToString());
         }
         if (row["CpID"] != null && row["CpID"].ToString() != "")
         {
             model.CpID = int.Parse(row["CpID"].ToString());
         }
     }
     return(model);
 }
Ejemplo n.º 3
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(CdHotelManage.Model.cprotocolPrice model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into cprotocolPrice(");
            strSql.Append("Accounts,RoomType,Price,protoPrice,mothPrice,zdPrice,lcPrice,Breakfast,commission,CpID)");
            strSql.Append(" values (");
            strSql.Append("@Accounts,@RoomType,@Price,@protoPrice,@mothPrice,@zdPrice,@lcPrice,@Breakfast,@commission,@CpID)");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Accounts",   SqlDbType.NVarChar, 50),
                new SqlParameter("@RoomType",   SqlDbType.Int,       4),
                new SqlParameter("@Price",      SqlDbType.Int,       4),
                new SqlParameter("@protoPrice", SqlDbType.Int,       4),
                new SqlParameter("@mothPrice",  SqlDbType.Int,       4),
                new SqlParameter("@zdPrice",    SqlDbType.Float,     4),
                new SqlParameter("@lcPrice",    SqlDbType.Int,       4),
                new SqlParameter("@Breakfast",  SqlDbType.Int,       4),
                new SqlParameter("@commission", SqlDbType.Int,       4),
                new SqlParameter("@CpID",       SqlDbType.Int, 4)
            };
            parameters[0].Value = model.Accounts;
            parameters[1].Value = model.RoomType;
            parameters[2].Value = model.Price;
            parameters[3].Value = model.protoPrice;
            parameters[4].Value = model.mothPrice;
            parameters[5].Value = model.zdPrice;
            parameters[6].Value = model.lcPrice;
            parameters[7].Value = model.Breakfast;
            parameters[8].Value = model.commission;
            parameters[9].Value = model.CpID;
            object obj = DbHelperSQL.GetSingle(strSql.ToString(), parameters);

            if (obj == null)
            {
                return(0);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }
Ejemplo n.º 4
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public CdHotelManage.Model.cprotocolPrice GetModel(int ID)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 ID,Accounts,RoomType,Price,protoPrice,mothPrice,zdPrice,lcPrice,Breakfast,commission,CpID from cprotocolPrice ");
            strSql.Append(" where ID=@ID");
            SqlParameter[] parameters =
            {
                new SqlParameter("@ID", SqlDbType.Int, 4)
            };
            parameters[0].Value = ID;

            CdHotelManage.Model.cprotocolPrice model = new CdHotelManage.Model.cprotocolPrice();
            DataSet ds = DbHelperSQL.Query(strSql.ToString(), parameters);

            if (ds.Tables[0].Rows.Count > 0)
            {
                return(DataRowToModel(ds.Tables[0].Rows[0]));
            }
            else
            {
                return(null);
            }
        }