vendor/theatre/core/src/Entity/Dvdtechnos.php line 13

Open in your IDE?
  1. <?php
  2. namespace TheatreCore\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Dvdtechnos
  6.  *
  7.  * @ORM\Table(name="dvdtechnos")
  8.  * @ORM\Entity(repositoryClass="TheatreCore\Repository\DvdtechnosRepository")
  9.  */
  10. class Dvdtechnos
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="iddvdtechno", type="integer", nullable=false, options={"unsigned"=true})
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="IDENTITY")
  18.      */
  19.     private $iddvdtechno;
  20.     /**
  21.      * @var string|null
  22.      *
  23.      * @ORM\Column(name="techno", type="string", length=250, nullable=true)
  24.      */
  25.     private $techno;
  26.     /**
  27.      * @var string|null
  28.      *
  29.      * @ORM\Column(name="description", type="text", length=65535, nullable=true)
  30.      */
  31.     private $description;
  32.     /**
  33.      * Get iddvdtechno.
  34.      *
  35.      * @return int
  36.      */
  37.     public function getIddvdtechno()
  38.     {
  39.         return $this->iddvdtechno;
  40.     }
  41.     /**
  42.      * Set techno.
  43.      *
  44.      * @param string|null $techno
  45.      *
  46.      * @return Dvdtechnos
  47.      */
  48.     public function setTechno($techno null)
  49.     {
  50.         $this->techno $techno;
  51.         return $this;
  52.     }
  53.     /**
  54.      * Get techno.
  55.      *
  56.      * @return string|null
  57.      */
  58.     public function getTechno()
  59.     {
  60.         return $this->techno;
  61.     }
  62.     /**
  63.      * Set description.
  64.      *
  65.      * @param string|null $description
  66.      *
  67.      * @return Dvdtechnos
  68.      */
  69.     public function setDescription($description null)
  70.     {
  71.         $this->description $description;
  72.         return $this;
  73.     }
  74.     /**
  75.      * Get description.
  76.      *
  77.      * @return string|null
  78.      */
  79.     public function getDescription()
  80.     {
  81.         return $this->description;
  82.     }
  83. }