126 lines
2.5 KiB
PHP
126 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
use App\Repository\PostRepository;
|
|
use Doctrine\DBAL\Types\Types;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
#[ORM\Entity(repositoryClass: PostRepository::class)]
|
|
class Post
|
|
{
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column]
|
|
private ?int $id = null;
|
|
|
|
#[ORM\Column]
|
|
private ?\DateTimeImmutable $foundDate = null;
|
|
|
|
#[ORM\Column]
|
|
private ?\DateTimeImmutable $publicationDate = null;
|
|
|
|
#[ORM\Column(nullable: true)]
|
|
private ?float $latitude = null;
|
|
|
|
#[ORM\Column(nullable: true)]
|
|
private ?float $longitude = null;
|
|
|
|
#[ORM\Column(nullable: true)]
|
|
private ?float $altitude = null;
|
|
|
|
#[ORM\Column(type: Types::TEXT)]
|
|
private ?string $commentary = null;
|
|
|
|
#[ORM\ManyToOne(inversedBy: 'posts')]
|
|
private ?Species $species = null;
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getFoundDate(): ?\DateTimeImmutable
|
|
{
|
|
return $this->foundDate;
|
|
}
|
|
|
|
public function setFoundDate(\DateTimeImmutable $foundDate): static
|
|
{
|
|
$this->foundDate = $foundDate;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getPublicationDate(): ?\DateTimeImmutable
|
|
{
|
|
return $this->publicationDate;
|
|
}
|
|
|
|
public function setPublicationDate(\DateTimeImmutable $publicationDate): static
|
|
{
|
|
$this->publicationDate = $publicationDate;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getLatitude(): ?float
|
|
{
|
|
return $this->latitude;
|
|
}
|
|
|
|
public function setLatitude(?float $latitude): static
|
|
{
|
|
$this->latitude = $latitude;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getLongitude(): ?float
|
|
{
|
|
return $this->longitude;
|
|
}
|
|
|
|
public function setLongitude(?float $longitude): static
|
|
{
|
|
$this->longitude = $longitude;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getAltitude(): ?float
|
|
{
|
|
return $this->altitude;
|
|
}
|
|
|
|
public function setAltitude(?float $altitude): static
|
|
{
|
|
$this->altitude = $altitude;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getCommentary(): ?string
|
|
{
|
|
return $this->commentary;
|
|
}
|
|
|
|
public function setCommentary(string $commentary): static
|
|
{
|
|
$this->commentary = $commentary;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getSpecies(): ?Species
|
|
{
|
|
return $this->species;
|
|
}
|
|
|
|
public function setSpecies(?Species $species): static
|
|
{
|
|
$this->species = $species;
|
|
|
|
return $this;
|
|
}
|
|
}
|