src/Entity/TbClienteConvenio.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TbClienteConvenioRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * TbClienteConvenio
  7.  *
  8.  * @ORM\Table(name="tb_cliente_convenio", uniqueConstraints={@ORM\UniqueConstraint(name="int_convenio_UNIQUE", columns={"int_convenio"})}, indexes={@ORM\Index(name="bool_estado", columns={"bool_estado"}), @ORM\Index(name="int_convenio", columns={"int_convenio"}), @ORM\Index(name="str_descripcion_convenio", columns={"str_descripcion_convenio"})})
  9.  * @ORM\Entity(repositoryClass=TbClienteConvenioRepository::class)
  10.  */
  11. class TbClienteConvenio
  12. {
  13.     /**
  14.      * @var int
  15.      *
  16.      * @ORM\Column(name="int_convenio", type="integer", nullable=false, options={"comment"="Clave primaria"})
  17.      * @ORM\Id
  18.      * @ORM\GeneratedValue(strategy="IDENTITY")
  19.      */
  20.     private $intConvenio;
  21.     /**
  22.      * @var string
  23.      *
  24.      * @ORM\Column(name="str_descripcion_convenio", type="string", length=100, nullable=false, options={"comment"="Nombre del convenio"})
  25.      */
  26.     private $strDescripcionConvenio;
  27.     /**
  28.      * @var bool
  29.      *
  30.      * @ORM\Column(name="bool_estado", type="boolean", nullable=false, options={"comment"="Estado del tipo de licencia 0: inactivo ; 1: activo"})
  31.      */
  32.     private $boolEstado;
  33.     /**
  34.      * @var int|null
  35.      *
  36.      * @ORM\Column(name="int_usuario_himed_crea", type="integer", nullable=true, options={"comment"="Usuario que crea el registro"})
  37.      */
  38.     private $intUsuarioHimedCrea;
  39.     /**
  40.      * @var \DateTime|null
  41.      *
  42.      * @ORM\Column(name="dt_fecha_creacion", type="datetime", nullable=true, options={"default"="CURRENT_TIMESTAMP","comment"="fecha creacion del registro"})
  43.      */
  44.     private $dtFechaCreacion 'CURRENT_TIMESTAMP';
  45.     /**
  46.      * @var string|null
  47.      *
  48.      * @ORM\Column(name="int_usuario_himed_edita", type="string", length=20, nullable=true, options={"comment"="Usuario que edita el registro"})
  49.      */
  50.     private $intUsuarioHimedEdita;
  51.     /**
  52.      * @var \DateTime|null
  53.      *
  54.      * @ORM\Column(name="dt_fecha_edicion", type="datetime", nullable=true, options={"comment"="Fecha de edicion"})
  55.      */
  56.     private $dtFechaEdicion;
  57.     public function getIntConvenio(): ?int
  58.     {
  59.         return $this->intConvenio;
  60.     }
  61.     public function getStrDescripcionConvenio(): ?string
  62.     {
  63.         return $this->strDescripcionConvenio;
  64.     }
  65.     public function setStrDescripcionConvenio(string $strDescripcionConvenio): self
  66.     {
  67.         $this->strDescripcionConvenio $strDescripcionConvenio;
  68.         return $this;
  69.     }
  70.     public function getBoolEstado(): ?bool
  71.     {
  72.         return $this->boolEstado;
  73.     }
  74.     public function setBoolEstado(bool $boolEstado): self
  75.     {
  76.         $this->boolEstado $boolEstado;
  77.         return $this;
  78.     }
  79.     public function getIntUsuarioHimedCrea(): ?int
  80.     {
  81.         return $this->intUsuarioHimedCrea;
  82.     }
  83.     public function setIntUsuarioHimedCrea(?int $intUsuarioHimedCrea): self
  84.     {
  85.         $this->intUsuarioHimedCrea $intUsuarioHimedCrea;
  86.         return $this;
  87.     }
  88.     public function getDtFechaCreacion(): ?\DateTimeInterface
  89.     {
  90.         return $this->dtFechaCreacion;
  91.     }
  92.     public function setDtFechaCreacion(?\DateTimeInterface $dtFechaCreacion): self
  93.     {
  94.         $this->dtFechaCreacion $dtFechaCreacion;
  95.         return $this;
  96.     }
  97.     public function getIntUsuarioHimedEdita(): ?string
  98.     {
  99.         return $this->intUsuarioHimedEdita;
  100.     }
  101.     public function setIntUsuarioHimedEdita(?string $intUsuarioHimedEdita): self
  102.     {
  103.         $this->intUsuarioHimedEdita $intUsuarioHimedEdita;
  104.         return $this;
  105.     }
  106.     public function getDtFechaEdicion(): ?\DateTimeInterface
  107.     {
  108.         return $this->dtFechaEdicion;
  109.     }
  110.     public function setDtFechaEdicion(?\DateTimeInterface $dtFechaEdicion): self
  111.     {
  112.         $this->dtFechaEdicion $dtFechaEdicion;
  113.         return $this;
  114.     }
  115. }