src/Entity/TbVendedor.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TbVendedorRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * TbVendedor
  7.  *
  8.  * @ORM\Table(name="tb_vendedor", uniqueConstraints={@ORM\UniqueConstraint(name="int_numero_identificacion_UNIQUE", columns={"int_numero_identificacion"})}, indexes={@ORM\Index(name="tb_vendedor_bool_estado_idx", columns={"bool_estado"}), @ORM\Index(name="tb_vendedor_int_id_usuario_creador_idx", columns={"int_id_usuario_creador"}), @ORM\Index(name="tb_vendedor_int_id_tipo_identificacion_fkey_idx", columns={"int_id_tipo_identificacion"})})
  9.  * @ORM\Entity(repositoryClass=TbVendedorRepository::class)
  10.  */
  11. class TbVendedor
  12. {
  13.     /**
  14.      * @var int
  15.      *
  16.      * @ORM\Column(name="int_id_vendedor", type="integer", nullable=false, options={"unsigned"=true,"comment"="Clave primaria"})
  17.      * @ORM\Id
  18.      * @ORM\GeneratedValue(strategy="IDENTITY")
  19.      */
  20.     private $intIdVendedor;
  21.     /**
  22.      * @var int
  23.      *
  24.      * @ORM\Column(name="int_numero_identificacion", type="integer", nullable=false, options={"unsigned"=true,"comment"="Número de identificación del vendedor"})
  25.      */
  26.     private $intNumeroIdentificacion;
  27.     /**
  28.      * @var string
  29.      *
  30.      * @ORM\Column(name="str_nombres", type="string", length=180, nullable=false, options={"comment"="Nombre del vendedor"})
  31.      */
  32.     private $strNombres;
  33.     /**
  34.      * @var string
  35.      *
  36.      * @ORM\Column(name="str_apellidos", type="string", length=180, nullable=false, options={"comment"="Apellidos del vendedor"})
  37.      */
  38.     private $strApellidos;
  39.     /**
  40.      * @var bool
  41.      *
  42.      * @ORM\Column(name="bool_estado", type="boolean", nullable=false, options={"default"="1","comment"="El valor cero (0) representa que el cargo se encuentra inactivo. El valor uno (1) representa que el cargo se encuentra activo."})
  43.      */
  44.     private $boolEstado true;
  45.     /**
  46.      * @var \DateTime
  47.      *
  48.      * @ORM\Column(name="dt_fecha_creacion", type="datetime", nullable=false, options={"default"="CURRENT_TIMESTAMP","comment"="Fecha de creación del registo"})
  49.      */
  50.     private $dtFechaCreacion 'CURRENT_TIMESTAMP';
  51.     /**
  52.      * @var int|null
  53.      *
  54.      * @ORM\Column(name="int_id_ultimo_usuario_editor", type="integer", nullable=true, options={"unsigned"=true,"comment"="Último usuario que editó el registro"})
  55.      */
  56.     private $intIdUltimoUsuarioEditor;
  57.     /**
  58.      * @var \DateTime|null
  59.      *
  60.      * @ORM\Column(name="dt_ultima_fecha_edicion", type="datetime", nullable=true, options={"comment"="Última fecha de edición del registro"})
  61.      */
  62.     private $dtUltimaFechaEdicion;
  63.     /**
  64.      * @var \TbTipoIdentificacion
  65.      *
  66.      * @ORM\ManyToOne(targetEntity="TbTipoIdentificacion")
  67.      * @ORM\JoinColumns({
  68.      *   @ORM\JoinColumn(name="int_id_tipo_identificacion", referencedColumnName="int_id_tipo_identificacion")
  69.      * })
  70.      */
  71.     private $intIdTipoIdentificacion;
  72.     /**
  73.      * @var \TbUsuarioHimedAdmin
  74.      *
  75.      * @ORM\ManyToOne(targetEntity="TbUsuarioHimedAdmin")
  76.      * @ORM\JoinColumns({
  77.      *   @ORM\JoinColumn(name="int_id_usuario_creador", referencedColumnName="int_id_usuario")
  78.      * })
  79.      */
  80.     private $intIdUsuarioCreador;
  81.     public function getIntIdVendedor(): ?int
  82.     {
  83.         return $this->intIdVendedor;
  84.     }
  85.     public function getIntNumeroIdentificacion(): ?int
  86.     {
  87.         return $this->intNumeroIdentificacion;
  88.     }
  89.     public function setIntNumeroIdentificacion(int $intNumeroIdentificacion): self
  90.     {
  91.         $this->intNumeroIdentificacion $intNumeroIdentificacion;
  92.         return $this;
  93.     }
  94.     public function getStrNombres(): ?string
  95.     {
  96.         return $this->strNombres;
  97.     }
  98.     public function setStrNombres(string $strNombres): self
  99.     {
  100.         $this->strNombres $strNombres;
  101.         return $this;
  102.     }
  103.     public function getStrApellidos(): ?string
  104.     {
  105.         return $this->strApellidos;
  106.     }
  107.     public function setStrApellidos(string $strApellidos): self
  108.     {
  109.         $this->strApellidos $strApellidos;
  110.         return $this;
  111.     }
  112.     public function getBoolEstado(): ?bool
  113.     {
  114.         return $this->boolEstado;
  115.     }
  116.     public function setBoolEstado(bool $boolEstado): self
  117.     {
  118.         $this->boolEstado $boolEstado;
  119.         return $this;
  120.     }
  121.     public function getDtFechaCreacion(): ?\DateTimeInterface
  122.     {
  123.         return $this->dtFechaCreacion;
  124.     }
  125.     public function setDtFechaCreacion(\DateTimeInterface $dtFechaCreacion): self
  126.     {
  127.         $this->dtFechaCreacion $dtFechaCreacion;
  128.         return $this;
  129.     }
  130.     public function getIntIdUltimoUsuarioEditor(): ?int
  131.     {
  132.         return $this->intIdUltimoUsuarioEditor;
  133.     }
  134.     public function setIntIdUltimoUsuarioEditor(?int $intIdUltimoUsuarioEditor): self
  135.     {
  136.         $this->intIdUltimoUsuarioEditor $intIdUltimoUsuarioEditor;
  137.         return $this;
  138.     }
  139.     public function getDtUltimaFechaEdicion(): ?\DateTimeInterface
  140.     {
  141.         return $this->dtUltimaFechaEdicion;
  142.     }
  143.     public function setDtUltimaFechaEdicion(?\DateTimeInterface $dtUltimaFechaEdicion): self
  144.     {
  145.         $this->dtUltimaFechaEdicion $dtUltimaFechaEdicion;
  146.         return $this;
  147.     }
  148.     public function getIntIdTipoIdentificacion(): ?TbTipoIdentificacion
  149.     {
  150.         return $this->intIdTipoIdentificacion;
  151.     }
  152.     public function setIntIdTipoIdentificacion(?TbTipoIdentificacion $intIdTipoIdentificacion): self
  153.     {
  154.         $this->intIdTipoIdentificacion $intIdTipoIdentificacion;
  155.         return $this;
  156.     }
  157.     public function getIntIdUsuarioCreador(): ?TbUsuarioHimedAdmin
  158.     {
  159.         return $this->intIdUsuarioCreador;
  160.     }
  161.     public function setIntIdUsuarioCreador(?TbUsuarioHimedAdmin $intIdUsuarioCreador): self
  162.     {
  163.         $this->intIdUsuarioCreador $intIdUsuarioCreador;
  164.         return $this;
  165.     }
  166. }