src/Entity/Liquidaciones.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LiquidacionesRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassLiquidacionesRepository::class)]
  7. class Liquidaciones
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(typeTypes::DATE_MUTABLE)]
  14.     private ?\DateTimeInterface $fechainicio null;
  15.     #[ORM\Column(typeTypes::DATE_MUTABLE)]
  16.     private ?\DateTimeInterface $fechafinal null;
  17.     #[ORM\ManyToOne(inversedBy'liquidaciones')]
  18.     #[ORM\JoinColumn(nullablefalse)]
  19.     private ?Landlords $landlord null;
  20.     #[ORM\Column]
  21.     private ?float $importe null;
  22.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  23.     private ?\DateTimeInterface $fecharegistro null;
  24.     #[ORM\Column]
  25.     private ?bool $cerrada null;
  26.     #[ORM\ManyToOne(inversedBy'liquidaciones')]
  27.     #[ORM\JoinColumn(nullablefalse)]
  28.     private ?PropertyList $property null;
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getFechainicio(): ?\DateTimeInterface
  34.     {
  35.         return $this->fechainicio;
  36.     }
  37.     public function setFechainicio(\DateTimeInterface $fechainicio): static
  38.     {
  39.         $this->fechainicio $fechainicio;
  40.         return $this;
  41.     }
  42.     public function getFechafinal(): ?\DateTimeInterface
  43.     {
  44.         return $this->fechafinal;
  45.     }
  46.     public function setFechafinal(\DateTimeInterface $fechafinal): static
  47.     {
  48.         $this->fechafinal $fechafinal;
  49.         return $this;
  50.     }
  51.     public function getLandlord(): ?Landlords
  52.     {
  53.         return $this->landlord;
  54.     }
  55.     public function setLandlord(?Landlords $landlord): static
  56.     {
  57.         $this->landlord $landlord;
  58.         return $this;
  59.     }
  60.     public function getImporte(): ?float
  61.     {
  62.         return $this->importe;
  63.     }
  64.     public function setImporte(float $importe): static
  65.     {
  66.         $this->importe $importe;
  67.         return $this;
  68.     }
  69.     public function getFecharegistro(): ?\DateTimeInterface
  70.     {
  71.         return $this->fecharegistro;
  72.     }
  73.     public function setFecharegistro(\DateTimeInterface $fecharegistro): static
  74.     {
  75.         $this->fecharegistro $fecharegistro;
  76.         return $this;
  77.     }
  78.     public function isCerrada(): ?bool
  79.     {
  80.         return $this->cerrada;
  81.     }
  82.     public function setCerrada(bool $cerrada): static
  83.     {
  84.         $this->cerrada $cerrada;
  85.         return $this;
  86.     }
  87.     public function getProperty(): ?PropertyList
  88.     {
  89.         return $this->property;
  90.     }
  91.     public function setProperty(?PropertyList $property): static
  92.     {
  93.         $this->property $property;
  94.         return $this;
  95.     }
  96. }