src/Entity/RecibosReparaciones.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RecibosReparacionesRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassRecibosReparacionesRepository::class)]
  7. class RecibosReparaciones
  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(typeTypes::DATETIME_MUTABLE)]
  16.     private ?\DateTimeInterface $fechaRegistro null;
  17.     #[ORM\Column(length100)]
  18.     private ?string $nombre null;
  19.     #[ORM\Column(typeTypes::TEXT)]
  20.     private ?string $descripcion null;
  21.     #[ORM\ManyToOne(inversedBy'recibosReparaciones')]
  22.     #[ORM\JoinColumn(nullablefalse)]
  23.     private ?PropertyList $property null;
  24.     #[ORM\ManyToOne(inversedBy'recibosReparaciones')]
  25.     private ?RemesasRecibos $remesa null;
  26.     #[ORM\Column]
  27.     private ?float $importe null;
  28.     #[ORM\Column(length150nullabletrue)]
  29.     private ?string $empresaReparacion null;
  30.     public function __toString(): string{
  31.         return " ";
  32.     }
  33.     public function getId(): ?int
  34.     {
  35.         return $this->id;
  36.     }
  37.     public function getFecha(): ?\DateTimeInterface
  38.     {
  39.         return $this->fecha;
  40.     }
  41.     public function setFecha(\DateTimeInterface $fecha): static
  42.     {
  43.         $this->fecha $fecha;
  44.         return $this;
  45.     }
  46.     public function getFechaRegistro(): ?\DateTimeInterface
  47.     {
  48.         return $this->fechaRegistro;
  49.     }
  50.     public function setFechaRegistro(\DateTimeInterface $fechaRegistro): static
  51.     {
  52.         $this->fechaRegistro $fechaRegistro;
  53.         return $this;
  54.     }
  55.     public function getNombre(): ?string
  56.     {
  57.         return $this->nombre;
  58.     }
  59.     public function setNombre(string $nombre): static
  60.     {
  61.         $this->nombre $nombre;
  62.         return $this;
  63.     }
  64.     public function getDescripcion(): ?string
  65.     {
  66.         return $this->descripcion;
  67.     }
  68.     public function setDescripcion(string $descripcion): static
  69.     {
  70.         $this->descripcion $descripcion;
  71.         return $this;
  72.     }
  73.     public function getProperty(): ?PropertyList
  74.     {
  75.         return $this->property;
  76.     }
  77.     public function setProperty(?PropertyList $property): static
  78.     {
  79.         $this->property $property;
  80.         return $this;
  81.     }
  82.     public function getRemesa(): ?RemesasRecibos
  83.     {
  84.         return $this->remesa;
  85.     }
  86.     public function setRemesa(?RemesasRecibos $remesa): static
  87.     {
  88.         $this->remesa $remesa;
  89.         return $this;
  90.     }
  91.     public function getImporte(): ?float
  92.     {
  93.         return $this->importe;
  94.     }
  95.     public function setImporte(float $importe): static
  96.     {
  97.         $this->importe $importe;
  98.         return $this;
  99.     }
  100.     public function getEmpresaReparacion(): ?string
  101.     {
  102.         return $this->empresaReparacion;
  103.     }
  104.     public function setEmpresaReparacion(?string $empresaReparacion): static
  105.     {
  106.         $this->empresaReparacion $empresaReparacion;
  107.         return $this;
  108.     }
  109. }