src/Entity/ComPersonasEncargadasDeOperacion.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComPersonasEncargadasDeOperacionRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassComPersonasEncargadasDeOperacionRepository::class)]
  7. class ComPersonasEncargadasDeOperacion
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255nullabletrue)]
  14.     private ?string $nombresApellidos null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $numeroIdentificacion null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $telefono null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $correoElectronico null;
  21.     #[ORM\ManyToOne(inversedBy'comPersonasEncargadasDeOperacions')]
  22.     private ?ParEstado $estadoSeccion null;
  23.     #[ORM\ManyToOne(inversedBy'comPersonasEncargadasDeOperacions')]
  24.     private ?ComCircular170YPoderes $comCircularC170 null;
  25.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  26.     private ?\DateTimeInterface $createAt null;
  27.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  28.     private ?\DateTimeInterface $updateAt null;
  29.     #[ORM\Column(length255nullabletrue)]
  30.     private ?string $createUser null;
  31.     #[ORM\Column(length255nullabletrue)]
  32.     private ?string $updateUser null;
  33.     public function getId(): ?int
  34.     {
  35.         return $this->id;
  36.     }
  37.     public function getNombresApellidos(): ?string
  38.     {
  39.         return $this->nombresApellidos;
  40.     }
  41.     public function setNombresApellidos(?string $nombresApellidos): static
  42.     {
  43.         $this->nombresApellidos $nombresApellidos;
  44.         return $this;
  45.     }
  46.     public function getNumeroIdentificacion(): ?string
  47.     {
  48.         return $this->numeroIdentificacion;
  49.     }
  50.     public function setNumeroIdentificacion(?string $numeroIdentificacion): static
  51.     {
  52.         $this->numeroIdentificacion $numeroIdentificacion;
  53.         return $this;
  54.     }
  55.     public function getTelefono(): ?string
  56.     {
  57.         return $this->telefono;
  58.     }
  59.     public function setTelefono(?string $telefono): static
  60.     {
  61.         $this->telefono $telefono;
  62.         return $this;
  63.     }
  64.     public function getCorreoElectronico(): ?string
  65.     {
  66.         return $this->correoElectronico;
  67.     }
  68.     public function setCorreoElectronico(?string $correoElectronico): static
  69.     {
  70.         $this->correoElectronico $correoElectronico;
  71.         return $this;
  72.     }
  73.     public function getEstadoSeccion(): ?ParEstado
  74.     {
  75.         return $this->estadoSeccion;
  76.     }
  77.     public function setEstadoSeccion(?ParEstado $estadoSeccion): static
  78.     {
  79.         $this->estadoSeccion $estadoSeccion;
  80.         return $this;
  81.     }
  82.     public function getComCircularC170(): ?ComCircular170YPoderes
  83.     {
  84.         return $this->comCircularC170;
  85.     }
  86.     public function setComCircularC170(?ComCircular170YPoderes $comCircularC170): static
  87.     {
  88.         $this->comCircularC170 $comCircularC170;
  89.         return $this;
  90.     }
  91.     public function getCreateAt(): ?\DateTimeInterface
  92.     {
  93.         return $this->createAt;
  94.     }
  95.     public function setCreateAt(?\DateTimeInterface $createAt): static
  96.     {
  97.         $this->createAt $createAt;
  98.         return $this;
  99.     }
  100.     public function getUpdateAt(): ?\DateTimeInterface
  101.     {
  102.         return $this->updateAt;
  103.     }
  104.     public function setUpdateAt(?\DateTimeInterface $updateAt): static
  105.     {
  106.         $this->updateAt $updateAt;
  107.         return $this;
  108.     }
  109.     public function getCreateUser(): ?string
  110.     {
  111.         return $this->createUser;
  112.     }
  113.     public function setCreateUser(?string $createUser): static
  114.     {
  115.         $this->createUser $createUser;
  116.         return $this;
  117.     }
  118.     public function getUpdateUser(): ?string
  119.     {
  120.         return $this->updateUser;
  121.     }
  122.     public function setUpdateUser(?string $updateUser): static
  123.     {
  124.         $this->updateUser $updateUser;
  125.         return $this;
  126.     }
  127. }