src/Entity/NotasPropiedad.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\NotasPropiedadRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassNotasPropiedadRepository::class)]
  7. class NotasPropiedad
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(typeTypes::DATE_MUTABLE)]
  14.     private ?\DateTimeInterface $fecha null;
  15.     #[ORM\Column(length250)]
  16.     private ?string $nota null;
  17.     #[ORM\ManyToOne(inversedBy'notasPropiedads')]
  18.     #[ORM\JoinColumn(nullablefalse)]
  19.     private ?PropertyList $property null;
  20.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  21.     private ?\DateTimeInterface $fechaRegistro null;
  22.     #[ORM\Column]
  23.     private ?bool $verNota null;
  24.     public function __construct(){
  25.         $verNota=true;
  26.     }
  27.     public function getId(): ?int
  28.     {
  29.         return $this->id;
  30.     }
  31.     public function getFecha(): ?\DateTimeInterface
  32.     {
  33.         return $this->fecha;
  34.     }
  35.     public function setFecha(\DateTimeInterface $fecha): static
  36.     {
  37.         $this->fecha $fecha;
  38.         return $this;
  39.     }
  40.     public function getNota(): ?string
  41.     {
  42.         return $this->nota;
  43.     }
  44.     public function setNota(string $nota): static
  45.     {
  46.         $this->nota $nota;
  47.         return $this;
  48.     }
  49.     public function getProperty(): ?PropertyList
  50.     {
  51.         return $this->property;
  52.     }
  53.     public function setProperty(?PropertyList $property): static
  54.     {
  55.         $this->property $property;
  56.         return $this;
  57.     }
  58.     public function getFechaRegistro(): ?\DateTimeInterface
  59.     {
  60.         return $this->fechaRegistro;
  61.     }
  62.     public function setFechaRegistro(\DateTimeInterface $fechaRegistro): static
  63.     {
  64.         $this->fechaRegistro $fechaRegistro;
  65.         return $this;
  66.     }
  67.     public function isVerNota(): ?bool
  68.     {
  69.         return $this->verNota;
  70.     }
  71.     public function setVerNota(bool $verNota): static
  72.     {
  73.         $this->verNota $verNota;
  74.         return $this;
  75.     }
  76. }