src/Entity/ComComisionesTerceros.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComComisionesTercerosRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassComComisionesTercerosRepository::class)]
  7. class ComComisionesTerceros
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255nullabletrue)]
  14.     private ?string $pagoComision null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $razonSocial null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $nit null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $metodo null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $periodicidad null;
  23.     #[ORM\ManyToOne(inversedBy'comComisionesTerceros')]
  24.     private ?TerEmpresa $terEmpresa null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $concepto null;
  27.     #[ORM\Column(nullabletrue)]
  28.     private ?int $porcentaje null;
  29.     #[ORM\Column(length255nullabletrue)]
  30.     private ?string $detalleComision null;
  31.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  32.     private ?\DateTimeInterface $createAt null;
  33.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  34.     private ?\DateTimeInterface $updateAt null;
  35.     #[ORM\Column(length255nullabletrue)]
  36.     private ?string $createUser null;
  37.     #[ORM\Column(length255nullabletrue)]
  38.     private ?string $updateUser null;
  39.     #[ORM\ManyToOne(inversedBy'comComisionesTerceros')]
  40.     private ?ComHojaVida $comHojaVida null;
  41.     #[ORM\ManyToOne(inversedBy'comComisionesTerceros')]
  42.     private ?ComHojaVidaAsociado $comHojaVidaAsociado null;
  43.     public function getId(): ?int
  44.     {
  45.         return $this->id;
  46.     }
  47.     public function getPagoComision(): ?string
  48.     {
  49.         return $this->pagoComision;
  50.     }
  51.     public function setPagoComision(?string $pagoComision): static
  52.     {
  53.         $this->pagoComision $pagoComision;
  54.         return $this;
  55.     }
  56.     public function getRazonSocial(): ?string
  57.     {
  58.         return $this->razonSocial;
  59.     }
  60.     public function setRazonSocial(?string $razonSocial): static
  61.     {
  62.         $this->razonSocial $razonSocial;
  63.         return $this;
  64.     }
  65.     public function getNit(): ?string
  66.     {
  67.         return $this->nit;
  68.     }
  69.     public function setNit(?string $nit): static
  70.     {
  71.         $this->nit $nit;
  72.         return $this;
  73.     }
  74.     public function getMetodo(): ?string
  75.     {
  76.         return $this->metodo;
  77.     }
  78.     public function setMetodo(?string $metodo): static
  79.     {
  80.         $this->metodo $metodo;
  81.         return $this;
  82.     }
  83.     public function getPeriodicidad(): ?string
  84.     {
  85.         return $this->periodicidad;
  86.     }
  87.     public function setPeriodicidad(?string $periodicidad): static
  88.     {
  89.         $this->periodicidad $periodicidad;
  90.         return $this;
  91.     }
  92.     public function getTerEmpresa(): ?TerEmpresa
  93.     {
  94.         return $this->terEmpresa;
  95.     }
  96.     public function setTerEmpresa(?TerEmpresa $terEmpresa): static
  97.     {
  98.         $this->terEmpresa $terEmpresa;
  99.         return $this;
  100.     }
  101.     public function getConcepto(): ?string
  102.     {
  103.         return $this->concepto;
  104.     }
  105.     public function setConcepto(?string $concepto): static
  106.     {
  107.         $this->concepto $concepto;
  108.         return $this;
  109.     }
  110.     public function getPorcentaje(): ?int
  111.     {
  112.         return $this->porcentaje;
  113.     }
  114.     public function setPorcentaje(?int $porcentaje): static
  115.     {
  116.         $this->porcentaje $porcentaje;
  117.         return $this;
  118.     }
  119.     public function getDetalleComision(): ?string
  120.     {
  121.         return $this->detalleComision;
  122.     }
  123.     public function setDetalleComision(?string $detalleComision): static
  124.     {
  125.         $this->detalleComision $detalleComision;
  126.         return $this;
  127.     }
  128.     public function getCreateAt(): ?\DateTimeInterface
  129.     {
  130.         return $this->createAt;
  131.     }
  132.     public function setCreateAt(?\DateTimeInterface $createAt): static
  133.     {
  134.         $this->createAt $createAt;
  135.         return $this;
  136.     }
  137.     public function getUpdateAt(): ?\DateTimeInterface
  138.     {
  139.         return $this->updateAt;
  140.     }
  141.     public function setUpdateAt(?\DateTimeInterface $updateAt): static
  142.     {
  143.         $this->updateAt $updateAt;
  144.         return $this;
  145.     }
  146.     public function getCreateUser(): ?string
  147.     {
  148.         return $this->createUser;
  149.     }
  150.     public function setCreateUser(?string $createUser): static
  151.     {
  152.         $this->createUser $createUser;
  153.         return $this;
  154.     }
  155.     public function getUpdateUser(): ?string
  156.     {
  157.         return $this->updateUser;
  158.     }
  159.     public function setUpdateUser(?string $updateUser): static
  160.     {
  161.         $this->updateUser $updateUser;
  162.         return $this;
  163.     }
  164.     public function getComHojaVida(): ?ComHojaVida
  165.     {
  166.         return $this->comHojaVida;
  167.     }
  168.     public function setComHojaVida(?ComHojaVida $comHojaVida): static
  169.     {
  170.         $this->comHojaVida $comHojaVida;
  171.         return $this;
  172.     }
  173.     public function getComHojaVidaAsociado(): ?ComHojaVidaAsociado
  174.     {
  175.         return $this->comHojaVidaAsociado;
  176.     }
  177.     public function setComHojaVidaAsociado(?ComHojaVidaAsociado $comHojaVidaAsociado): static
  178.     {
  179.         $this->comHojaVidaAsociado $comHojaVidaAsociado;
  180.         return $this;
  181.     }
  182. }