src/Entity/TbDepartamento.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TbDepartamentoRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * TbDepartamento
  7.  *
  8.  * @ORM\Table(name="tb_departamento", indexes={@ORM\Index(name="fk_tb_departamento_strid_pais_idx", columns={"strid_pais"}), @ORM\Index(name="bool_estado", columns={"bool_estado"})})
  9.  * @ORM\Entity(repositoryClass=TbDepartamentoRepository::class)
  10.  */
  11. class TbDepartamento
  12. {
  13.     /**
  14.      * @var string
  15.      *
  16.      * @ORM\Column(name="strid_dpto", type="string", length=6, nullable=false, options={"comment"="Clave principal"})
  17.      * @ORM\Id
  18.      * @ORM\GeneratedValue(strategy="NONE")
  19.      */
  20.     private $stridDpto;
  21.     /**
  22.      * @var string
  23.      *
  24.      * @ORM\Column(name="str_nom_depto", type="string", length=100, nullable=false)
  25.      */
  26.     private $strNomDepto;
  27.     /**
  28.      * @var bool|null
  29.      *
  30.      * @ORM\Column(name="bool_estado", type="boolean", nullable=true, options={"default"="1","comment"="Estado del registro 0: Inactivo ; 1: Activo"})
  31.      */
  32.     private $boolEstado true;
  33.     /**
  34.      * @var \TbPais
  35.      *
  36.      * @ORM\OneToOne(targetEntity="TbPais")
  37.      * @ORM\JoinColumns({
  38.      *   @ORM\JoinColumn(name="strid_pais", referencedColumnName="strid_pais")
  39.      * })
  40.      */
  41.     private $stridPais;
  42.     public function getStridDpto(): ?string
  43.     {
  44.         return $this->stridDpto;
  45.     }
  46.     public function getStrNomDepto(): ?string
  47.     {
  48.         return $this->strNomDepto;
  49.     }
  50.     public function setStrNomDepto(string $strNomDepto): self
  51.     {
  52.         $this->strNomDepto $strNomDepto;
  53.         return $this;
  54.     }
  55.     public function getBoolEstado(): ?bool
  56.     {
  57.         return $this->boolEstado;
  58.     }
  59.     public function setBoolEstado(?bool $boolEstado): self
  60.     {
  61.         $this->boolEstado $boolEstado;
  62.         return $this;
  63.     }
  64.     public function getStridPais(): ?TbPais
  65.     {
  66.         return $this->stridPais;
  67.     }
  68.     public function setStridPais(?TbPais $stridPais): self
  69.     {
  70.         $this->stridPais $stridPais;
  71.         return $this;
  72.     }
  73. }