src/Entity/RecibosTenants.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\RemesasRecibos;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use App\Repository\RecibosTenantsRepository;
  7. #[ORM\Entity(repositoryClassRecibosTenantsRepository::class)]
  8. class RecibosTenants
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(typeTypes::DATE_MUTABLE)]
  15.     private ?\DateTimeInterface $fechainicio null;
  16.     #[ORM\Column(typeTypes::DATE_MUTABLE)]
  17.     private ?\DateTimeInterface $fechafinal null;
  18.     #[ORM\ManyToOne(inversedBy'recibosTenants')]
  19.     #[ORM\JoinColumn(nullablefalse)]
  20.     private ?Tenants $tenant null;
  21.     #[ORM\ManyToOne(inversedBy'recibosTenants')]
  22.     #[ORM\JoinColumn(nullablefalse)]
  23.     private ?PropertyList $property null;
  24.     #[ORM\Column(length255)]
  25.     private ?string $descripcion null;
  26.     #[ORM\Column]
  27.     private ?float $importe null;
  28.     #[ORM\Column]
  29.     private ?bool $pagado null;
  30.     #[ORM\ManyToOne(inversedBy'recibosTenants')]
  31.     #[ORM\JoinColumn(nullabletrue)]
  32.     private ?RemesasRecibos $remesa null;
  33.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  34.     private ?\DateTimeInterface $fecharegistro null;
  35.     public function llenarDatosRecibo(\DateTimeInterface $fechainicio\DateTimeInterface $fechafinalTenants $tenant,
  36.             PropertyList $propertystring $descripcionfloat $importebool $pagado\DateTimeInterface $fecharegistro,
  37.             ?RemesasRecibos $remesa null){
  38.         $this->fechainicio=$fechainicio;
  39.         $this->fechafinal=$fechafinal;
  40.         $this->tenant=$tenant;
  41.         $this->property=$property;
  42.         $this->descripcion=$descripcion;
  43.         $this->importe=$importe;
  44.         $this->pagado=$pagado;
  45.         $this->fecharegistro=$fecharegistro;
  46.         $this->remesa=$remesa;
  47.     }
  48.     public function __toString(): string{
  49.         return " ";
  50.     }
  51.     
  52.     public function getId(): ?int
  53.     {
  54.         return $this->id;
  55.     }
  56.     public function getFechainicio(): ?\DateTimeInterface
  57.     {
  58.         return $this->fechainicio;
  59.     }
  60.     public function setFechainicio(\DateTimeInterface $fechainicio): static
  61.     {
  62.         $this->fechainicio $fechainicio;
  63.         return $this;
  64.     }
  65.     public function getFechafinal(): ?\DateTimeInterface
  66.     {
  67.         return $this->fechafinal;
  68.     }
  69.     public function setFechafinal(\DateTimeInterface $fechafinal): static
  70.     {
  71.         $this->fechafinal $fechafinal;
  72.         return $this;
  73.     }
  74.     public function getTenant(): ?Tenants
  75.     {
  76.         return $this->tenant;
  77.     }
  78.     public function setTenant(?Tenants $tenant): static
  79.     {
  80.         $this->tenant $tenant;
  81.         return $this;
  82.     }
  83.     public function getProperty(): ?PropertyList
  84.     {
  85.         return $this->property;
  86.     }
  87.     public function setProperty(?PropertyList $property): static
  88.     {
  89.         $this->property $property;
  90.         return $this;
  91.     }
  92.     public function getDescripcion(): ?string
  93.     {
  94.         return $this->descripcion;
  95.     }
  96.     public function setDescripcion(string $descripcion): static
  97.     {
  98.         $this->descripcion $descripcion;
  99.         return $this;
  100.     }
  101.     public function getImporte(): ?float
  102.     {
  103.         return $this->importe;
  104.     }
  105.     public function setImporte(float $importe): static
  106.     {
  107.         $this->importe $importe;
  108.         return $this;
  109.     }
  110.     public function isPagado(): ?bool
  111.     {
  112.         return $this->pagado;
  113.     }
  114.     public function setPagado(bool $pagado): static
  115.     {
  116.         $this->pagado $pagado;
  117.         return $this;
  118.     }
  119.     public function getRemesa(): ?RemesasRecibos
  120.     {
  121.         return $this->remesa;
  122.     }
  123.     public function setRemesa(?RemesasRecibos $remesa): static
  124.     {
  125.         $this->remesa $remesa;
  126.         return $this;
  127.     }
  128.     public function getFecharegistro(): ?\DateTimeInterface
  129.     {
  130.         return $this->fecharegistro;
  131.     }
  132.     public function setFecharegistro(\DateTimeInterface $fecharegistro): static
  133.     {
  134.         $this->fecharegistro $fecharegistro;
  135.         return $this;
  136.     }
  137. }