<?php

namespace App\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity(repositoryClass="App\Repository\LocationRateRepository")
 */
class LocationRate
{
    /**
     * @ORM\Id()
     * @ORM\GeneratedValue()
     * @ORM\Column(type="integer")
     */
    private $id;

    /**
     * @ORM\Column(type="integer")
     */
    private $lowerBound;

    /**
     * @ORM\Column(type="integer")
     */
    private $upperBound;

    /**
     * @ORM\Column(type="integer")
     */
    private $rate;

    public function getId(): ?int
    {
        return $this->id;
    }

    public function getLowerBound(): ?int
    {
        return $this->lowerBound;
    }

    public function setLowerBound(int $lowerBound): self
    {
        $this->lowerBound = $lowerBound;

        return $this;
    }

    public function getUpperBound(): ?int
    {
        return $this->upperBound;
    }

    public function setUpperBound(int $upperBound): self
    {
        $this->upperBound = $upperBound;

        return $this;
    }

    public function getRate(): ?int
    {
        return $this->rate;
    }

    public function setRate(int $rate): self
    {
        $this->rate = $rate;

        return $this;
    }
}
