src/Entity/Persona/Persona.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Persona;
  3. use App\Entity\Catalogos\Parroquias;
  4. use App\Entity\Fidelizacion\CategoriaCliente;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * Persona
  8.  *
  9.  * @ORM\Table(name="persona.persona", uniqueConstraints={@ORM\UniqueConstraint(name="identificacion_uq", columns={"numero_identificacion"}), @ORM\UniqueConstraint(name="mail_personal_uq", columns={"mail_personal"})}, indexes={@ORM\Index(name="IDX_37E2789F7440C9C", columns={"id_categoria_cliente"}), @ORM\Index(name="IDX_37E2789FFDCE01A0", columns={"id_parroquias"})})
  10.  * @ORM\Entity
  11.  */
  12. class Persona
  13. {
  14.     /**
  15.      * @var int
  16.      *
  17.      * @ORM\Column(name="id", type="integer", nullable=false)
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue(strategy="SEQUENCE")
  20.      * @ORM\SequenceGenerator(sequenceName="persona.persona_id_seq", allocationSize=1, initialValue=1)
  21.      */
  22.     private $id;
  23.     /**
  24.      * @var string
  25.      *
  26.      * @ORM\Column(name="tipo_identificacion", type="string", length=10, nullable=false, options={"comment"="Tipo Identificacion: Cedula/Pasaporte"})
  27.      */
  28.     private $tipoIdentificacion;
  29.     /**
  30.      * @var string
  31.      *
  32.      * @ORM\Column(name="numero_identificacion", type="string", length=15, nullable=false, options={"comment"="Si es cedula debe validarse con el digito validador de la cedula
  33. SI es pasaporte puede ingresar cualquier cadena de texto"})
  34.      */
  35.     private $numeroIdentificacion;
  36.     /**
  37.      * @var string
  38.      *
  39.      * @ORM\Column(name="apellidos", type="string", length=40, nullable=false, options={"comment"="Primer apellido de la persona"})
  40.      */
  41.     private $apellidos;
  42.     /**
  43.      * @var string
  44.      *
  45.      * @ORM\Column(name="nombres", type="string", length=40, nullable=false)
  46.      */
  47.     private $nombres;
  48.     /**
  49.      * @var string
  50.      *
  51.      * @ORM\Column(name="mail_personal", type="string", length=100, nullable=false)
  52.      */
  53.     private $mailPersonal;
  54.     /**
  55.      * @var string
  56.      *
  57.      * @ORM\Column(name="tel_celular", type="string", length=13, nullable=false)
  58.      */
  59.     private $telCelular;
  60.     /**
  61.      * @var \DateTime
  62.      *
  63.      * @ORM\Column(name="fecha_nacimiento", type="date", nullable=false)
  64.      */
  65.     private $fechaNacimiento;
  66.     /**
  67.      * @var string|null
  68.      *
  69.      * @ORM\Column(name="direccion_sector", type="text", nullable=true)
  70.      */
  71.     private $direccionSector;
  72.     /**
  73.      * @var int
  74.      *
  75.      * @ORM\Column(name="id_usuario_modificacion", type="integer", nullable=false)
  76.      */
  77.     private $idUsuarioModificacion;
  78.     /**
  79.      * @var \DateTime
  80.      *
  81.      * @ORM\Column(name="fecha_modificacion", type="datetime", nullable=false)
  82.      */
  83.     private $fechaModificacion;
  84.     /**
  85.      * @var string
  86.      *
  87.      * @ORM\Column(name="ip_modificacion", type="string", length=50, nullable=false)
  88.      */
  89.     private $ipModificacion;
  90.     /**
  91.      * @var \App\Entity\Catalogos\Parroquias
  92.      *
  93.      * @ORM\ManyToOne(targetEntity="App\Entity\Catalogos\Parroquias")
  94.      * @ORM\JoinColumns({
  95.      *   @ORM\JoinColumn(name="id_parroquias", referencedColumnName="id")
  96.      * })
  97.      */
  98.     private $idParroquias;
  99.     /**
  100.      * @var \App\Entity\Fidelizacion\CategoriaCliente
  101.      *
  102.      * @ORM\ManyToOne(targetEntity="App\Entity\Fidelizacion\CategoriaCliente")
  103.      * @ORM\JoinColumns({
  104.      *   @ORM\JoinColumn(name="id_categoria_cliente", referencedColumnName="id")
  105.      * })
  106.      */
  107.     private $idCategoriaCliente;
  108.     public function getId(): ?int
  109.     {
  110.         return $this->id;
  111.     }
  112.     public function getTipoIdentificacion(): ?string
  113.     {
  114.         return $this->tipoIdentificacion;
  115.     }
  116.     public function setTipoIdentificacion(string $tipoIdentificacion): self
  117.     {
  118.         $this->tipoIdentificacion $tipoIdentificacion;
  119.         return $this;
  120.     }
  121.     public function getNumeroIdentificacion(): ?string
  122.     {
  123.         return $this->numeroIdentificacion;
  124.     }
  125.     public function setNumeroIdentificacion(string $numeroIdentificacion): self
  126.     {
  127.         $this->numeroIdentificacion $numeroIdentificacion;
  128.         return $this;
  129.     }
  130.     public function getApellidos(): ?string
  131.     {
  132.         return $this->apellidos;
  133.     }
  134.     public function setApellidos(string $apellidos): self
  135.     {
  136.         $this->apellidos $apellidos;
  137.         return $this;
  138.     }
  139.     public function getNombres(): ?string
  140.     {
  141.         return $this->nombres;
  142.     }
  143.     public function setNombres(string $nombres): self
  144.     {
  145.         $this->nombres $nombres;
  146.         return $this;
  147.     }
  148.     public function getMailPersonal(): ?string
  149.     {
  150.         return $this->mailPersonal;
  151.     }
  152.     public function setMailPersonal(string $mailPersonal): self
  153.     {
  154.         $this->mailPersonal $mailPersonal;
  155.         return $this;
  156.     }
  157.     public function getTelCelular(): ?string
  158.     {
  159.         return $this->telCelular;
  160.     }
  161.     public function setTelCelular(string $telCelular): self
  162.     {
  163.         $this->telCelular $telCelular;
  164.         return $this;
  165.     }
  166.     public function getFechaNacimiento(): ?\DateTimeInterface
  167.     {
  168.         return $this->fechaNacimiento;
  169.     }
  170.     public function getFechaNacimientoString(): ? string
  171.     {
  172.         return $this->fechaNacimiento $this->fechaNacimiento->format('Y-m-d'):'';
  173.     }
  174.     public function setFechaNacimiento(\DateTimeInterface $fechaNacimiento): self
  175.     {
  176.         $this->fechaNacimiento $fechaNacimiento;
  177.         return $this;
  178.     }
  179.     public function getDireccionSector(): ?string
  180.     {
  181.         return $this->direccionSector;
  182.     }
  183.     public function setDireccionSector(?string $direccionSector): self
  184.     {
  185.         $this->direccionSector $direccionSector;
  186.         return $this;
  187.     }
  188.     public function getIdUsuarioModificacion(): ?int
  189.     {
  190.         return $this->idUsuarioModificacion;
  191.     }
  192.     public function setIdUsuarioModificacion(int $idUsuarioModificacion): self
  193.     {
  194.         $this->idUsuarioModificacion $idUsuarioModificacion;
  195.         return $this;
  196.     }
  197.     public function getFechaModificacion(): ?\DateTimeInterface
  198.     {
  199.         return $this->fechaModificacion;
  200.     }
  201.     public function setFechaModificacion(\DateTimeInterface $fechaModificacion): self
  202.     {
  203.         $this->fechaModificacion $fechaModificacion;
  204.         return $this;
  205.     }
  206.     public function getIpModificacion(): ?string
  207.     {
  208.         return $this->ipModificacion;
  209.     }
  210.     public function setIpModificacion(string $ipModificacion): self
  211.     {
  212.         $this->ipModificacion $ipModificacion;
  213.         return $this;
  214.     }
  215.     public function getIdParroquias(): ?Parroquias
  216.     {
  217.         return $this->idParroquias;
  218.     }
  219.     public function setIdParroquias(?Parroquias $idParroquias): self
  220.     {
  221.         $this->idParroquias $idParroquias;
  222.         return $this;
  223.     }
  224.     public function getIdCategoriaCliente(): ?CategoriaCliente
  225.     {
  226.         return $this->idCategoriaCliente;
  227.     }
  228.     public function setIdCategoriaCliente(?CategoriaCliente $idCategoriaCliente): self
  229.     {
  230.         $this->idCategoriaCliente $idCategoriaCliente;
  231.         return $this;
  232.     }
  233. }