src/Entity/TbPais.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * TbPais
  6.  *
  7.  * @ORM\Table(name="tb_pais", uniqueConstraints={@ORM\UniqueConstraint(name="strid_pais_UNIQUE", columns={"strid_pais"})}, indexes={@ORM\Index(name="bool_estado", columns={"bool_estado"})})
  8.  * @ORM\Entity(repositoryClass=TbPaisRepository::class)
  9.  */
  10. class TbPais
  11. {
  12.     /**
  13.      * @var string
  14.      *
  15.      * @ORM\Column(name="strid_pais", type="string", length=6, nullable=false)
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="IDENTITY")
  18.      */
  19.     private $stridPais;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="str_nombre_pais", type="string", length=100, nullable=false, options={"comment"="Nombre del pais"})
  24.      */
  25.     private $strNombrePais;
  26.     /**
  27.      * @var bool
  28.      *
  29.      * @ORM\Column(name="bool_estado", type="boolean", nullable=false, options={"default"="1","comment"="Estado: 0: Inactivo ; 1: Activo"})
  30.      */
  31.     private $boolEstado true;
  32.     public function getStridPais(): ?string
  33.     {
  34.         return $this->stridPais;
  35.     }
  36.     public function getStrNombrePais(): ?string
  37.     {
  38.         return $this->strNombrePais;
  39.     }
  40.     public function setStrNombrePais(string $strNombrePais): self
  41.     {
  42.         $this->strNombrePais $strNombrePais;
  43.         return $this;
  44.     }
  45.     public function getBoolEstado(): ?bool
  46.     {
  47.         return $this->boolEstado;
  48.     }
  49.     public function setBoolEstado(bool $boolEstado): self
  50.     {
  51.         $this->boolEstado $boolEstado;
  52.         return $this;
  53.     }
  54. }