src/Entity/TbHobbie.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * TbHobbie
  6.  *
  7.  * @ORM\Table(name="tb_hobbie", uniqueConstraints={@ORM\UniqueConstraint(name="int_id_hobbie_UNIQUE", columns={"int_id_hobbie"})})
  8.  * @ORM\Entity(repositoryClass="App\Repository\TbHobbieRepository")
  9.  */
  10. class TbHobbie
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="int_id_hobbie", type="integer", nullable=false, options={"unsigned"=true})
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="IDENTITY")
  18.      */
  19.     private $intIdHobbie;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="str_hobbie", type="string", length=255, nullable=false)
  24.      */
  25.     private $strHobbie;
  26.     /**
  27.      * @var bool
  28.      *
  29.      * @ORM\Column(name="tint_estado", type="boolean", nullable=false)
  30.      */
  31.     private $tintEstado;
  32.     public function getIntIdHobbie(): ?int
  33.     {
  34.         return $this->intIdHobbie;
  35.     }
  36.     public function getStrHobbie(): ?string
  37.     {
  38.         return $this->strHobbie;
  39.     }
  40.     public function setStrHobbie(string $strHobbie): self
  41.     {
  42.         $this->strHobbie $strHobbie;
  43.         return $this;
  44.     }
  45.     public function isTintEstado(): ?bool
  46.     {
  47.         return $this->tintEstado;
  48.     }
  49.     public function setTintEstado(bool $tintEstado): self
  50.     {
  51.         $this->tintEstado $tintEstado;
  52.         return $this;
  53.     }
  54. }