src/Entity/RecibosGestion.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RecibosGestionRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassRecibosGestionRepository::class)]
  7. class RecibosGestion
  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'recibosGestions')]
  18.     private ?PropertyList $property null;
  19.     #[ORM\Column]
  20.     private ?float $importe null;
  21.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  22.     private ?\DateTimeInterface $fecharegistro null;
  23.     #[ORM\Column(length255)]
  24.     private ?string $observaciones null;
  25.     #[ORM\ManyToOne(inversedBy'recibosGestions')]
  26.     private ?RemesasRecibos $remesaRecibo null;
  27.     #[ORM\Column(length30nullabletrue)]
  28.     private ?string $numFactura null;
  29.     private bool $checkRecibo=false;
  30.     #[ORM\ManyToOne(inversedBy'recibosGestions')]
  31.     private ?Landlords $landlord null;
  32.     public function __toString(): string{
  33.         return " ";
  34.     }
  35.     public function getCheckRecibo(){ return $this->checkRecibo ?? false; }
  36.     public function setCheckRecibo(bool $checkRecibo){ $this->checkRecibo=$checkRecibo ?? false; }
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getFechainicio(): ?\DateTimeInterface
  42.     {
  43.         return $this->fechainicio;
  44.     }
  45.     public function setFechainicio(\DateTimeInterface $fechainicio): static
  46.     {
  47.         $this->fechainicio $fechainicio;
  48.         return $this;
  49.     }
  50.     public function getFechafinal(): ?\DateTimeInterface
  51.     {
  52.         return $this->fechafinal;
  53.     }
  54.     public function setFechafinal(\DateTimeInterface $fechafinal): static
  55.     {
  56.         $this->fechafinal $fechafinal;
  57.         return $this;
  58.     }
  59.     public function getProperty(): ?PropertyList
  60.     {
  61.         return $this->property;
  62.     }
  63.     public function setProperty(?PropertyList $property): static
  64.     {
  65.         $this->property $property;
  66.         return $this;
  67.     }
  68.     public function getImporte(): ?float
  69.     {
  70.         return $this->importe;
  71.     }
  72.     public function setImporte(float $importe): static
  73.     {
  74.         $this->importe $importe;
  75.         return $this;
  76.     }
  77.     public function getFecharegistro(): ?\DateTimeInterface
  78.     {
  79.         return $this->fecharegistro;
  80.     }
  81.     public function setFecharegistro(\DateTimeInterface $fecharegistro): static
  82.     {
  83.         $this->fecharegistro $fecharegistro;
  84.         return $this;
  85.     }
  86.     public function getObservaciones(): ?string
  87.     {
  88.         return $this->observaciones;
  89.     }
  90.     public function setObservaciones(string $observaciones): static
  91.     {
  92.         $this->observaciones $observaciones;
  93.         return $this;
  94.     }
  95.     public function getRemesaRecibo(): ?RemesasRecibos
  96.     {
  97.         return $this->remesaRecibo;
  98.     }
  99.     public function setRemesaRecibo(?RemesasRecibos $remesaRecibo): static
  100.     {
  101.         $this->remesaRecibo $remesaRecibo;
  102.         return $this;
  103.     }
  104.     public function getNumFactura(): ?string
  105.     {
  106.         return $this->numFactura;
  107.     }
  108.     public function setNumFactura(?string $numFactura): static
  109.     {
  110.         $this->numFactura $numFactura;
  111.         return $this;
  112.     }
  113.     public function getLandlord(): ?Landlords
  114.     {
  115.         return $this->landlord;
  116.     }
  117.     public function setLandlord(?Landlords $landlord): static
  118.     {
  119.         $this->landlord $landlord;
  120.         return $this;
  121.     }
  122. }