src/Entity/Reserve.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ReserveRepository;
  4. use DateTimeInterface;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * @ORM\Entity(repositoryClass="App\Repository\ReserveRepository", repositoryClass=ReserveRepository::class)
  8.  */
  9. class Reserve
  10. {
  11.     /**
  12.      * @ORM\Id()
  13.      * @ORM\GeneratedValue()
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     public function getId(): ?int
  18.     {
  19.         return $this->id;
  20.     }
  21.     /**
  22.      * @ORM\ManyToOne(targetEntity=Motorcycle::class, inversedBy="reserves")
  23.      */
  24.     private $motorcycle;
  25.     /**
  26.      * @ORM\ManyToOne(targetEntity=Client::class, inversedBy="reserves")
  27.      */
  28.     private $client;
  29.     /**
  30.      * @ORM\Column(type="datetime")
  31.      */
  32.     private DateTimeInterface $startDate;
  33.     /**
  34.      * @ORM\Column(type="datetime")
  35.      */
  36.     private DateTimeInterface $endDate;
  37.     /**
  38.      * @ORM\Column(type="float", nullable=true)
  39.      */
  40.     private ?float $amount;
  41.     /**
  42.      * @var int
  43.      *
  44.      * @ORM\Column(name="status", type="rent_status_type", nullable=true)
  45.      */
  46.     private $status;
  47.     /**
  48.      * @ORM\Column(type="text", nullable=true)
  49.      */
  50.     private $notes;
  51.     public function getMotorcycle(): ?Motorcycle
  52.     {
  53.         return $this->motorcycle;
  54.     }
  55.     public function setMotorcycle$motorcycle): void
  56.     {
  57.         $this->motorcycle $motorcycle;
  58.     }
  59.     public function getClient()
  60.     {
  61.         return $this->client;
  62.     }
  63.     public function setClient$client): void
  64.     {
  65.         $this->client $client;
  66.     }
  67.     public function getStartDate(): DateTimeInterface
  68.     {
  69.         return $this->startDate;
  70.     }
  71.     public function setStartDate(DateTimeInterface $startDate): void
  72.     {
  73.         $this->startDate $startDate;
  74.     }
  75.     public function getEndDate(): DateTimeInterface
  76.     {
  77.         return $this->endDate->modify('+ 1 second');
  78.     }
  79.     public function setEndDate(DateTimeInterface $endDate): void
  80.     {
  81.         $this->endDate $endDate->modify('- 1 second');
  82.     }
  83.     public function getAmount(): ?float
  84.     {
  85.         return $this->amount;
  86.     }
  87.     public function setAmount(float $amount): void
  88.     {
  89.         $this->amount $amount;
  90.     }
  91.     public function getStatus(): int
  92.     {
  93.         return $this->status;
  94.     }
  95.     public function setStatus(int $status): void
  96.     {
  97.         $this->status $status;
  98.     }
  99.     public function getNotes(): ?string
  100.     {
  101.         return $this->notes;
  102.     }
  103.     public function setNotes(?string $notes): self
  104.     {
  105.         $this->notes $notes;
  106.         return $this;
  107.     }
  108. }