src/Entity/TbMunicipio.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TbMunicipioRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * TbMunicipio
  7.  *
  8.  * @ORM\Table(name="tb_municipio", indexes={@ORM\Index(name="fk_tb_municipio_strid_dpto_idx", columns={"strid_dpto"}), @ORM\Index(name="fk_tb_municipio_strid_pais_idx", columns={"strid_pais"}), @ORM\Index(name="bool_estado", columns={"bool_estado"})})
  9.  * @ORM\Entity(repositoryClass=TbMunicipioRepository::class)
  10.  */
  11. class TbMunicipio
  12. {
  13.     /**
  14.      * @var string
  15.      *
  16.      * @ORM\Column(name="strid_mpio", type="string", length=6, nullable=false)
  17.      * @ORM\Id
  18.      * @ORM\GeneratedValue(strategy="NONE")
  19.      */
  20.     private $stridMpio;
  21.     /**
  22.      * @var string
  23.      *
  24.      * @ORM\Column(name="str_nom_mpio", type="string", length=100, nullable=false)
  25.      */
  26.     private $strNomMpio;
  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 \TbDepartamento
  35.      *
  36.      * @ORM\OneToOne(targetEntity="TbDepartamento")
  37.      * @ORM\JoinColumns({
  38.      *   @ORM\JoinColumn(name="strid_dpto", referencedColumnName="strid_dpto")
  39.      * })
  40.      */
  41.     private $stridDpto;
  42.     /**
  43.      * @var \TbPais
  44.      *
  45.      * @ORM\OneToOne(targetEntity="TbPais")
  46.      * @ORM\JoinColumns({
  47.      *   @ORM\JoinColumn(name="strid_pais", referencedColumnName="strid_pais")
  48.      * })
  49.      */
  50.     private $stridPais;
  51.     public function getStridMpio(): ?string
  52.     {
  53.         return $this->stridMpio;
  54.     }
  55.     public function getStrNomMpio(): ?string
  56.     {
  57.         return $this->strNomMpio;
  58.     }
  59.     public function setStrNomMpio(string $strNomMpio): self
  60.     {
  61.         $this->strNomMpio $strNomMpio;
  62.         return $this;
  63.     }
  64.     public function getBoolEstado(): ?bool
  65.     {
  66.         return $this->boolEstado;
  67.     }
  68.     public function setBoolEstado(?bool $boolEstado): self
  69.     {
  70.         $this->boolEstado $boolEstado;
  71.         return $this;
  72.     }
  73.     public function getStridDpto(): ?TbDepartamento
  74.     {
  75.         return $this->stridDpto;
  76.     }
  77.     public function setStridDpto(?TbDepartamento $stridDpto): self
  78.     {
  79.         $this->stridDpto $stridDpto;
  80.         return $this;
  81.     }
  82.     public function getStridPais(): ?TbPais
  83.     {
  84.         return $this->stridPais;
  85.     }
  86.     public function setStridPais(?TbPais $stridPais): self
  87.     {
  88.         $this->stridPais $stridPais;
  89.         return $this;
  90.     }
  91. }