vendor/theatre/core/src/Entity/TextClassification.php line 16

Open in your IDE?
  1. <?php
  2. namespace TheatreCore\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use TheatreCore\Repository\TextClassificationRepository;
  5. /**
  6.  * contact_extranetuser
  7.  *
  8.  * @ORM\Table(name="text_classification")
  9.  *
  10.  * @ORM\Entity(repositoryClass="TheatreCore\Repository\TextClassificationRepository")
  11.  *
  12.  **/
  13. class TextClassification
  14. {
  15.     /**
  16.      * @var int
  17.      *
  18.      * @ORM\Column(name="idtext", type="integer", nullable=false, options={"unsigned"=true})
  19.      * @ORM\Id
  20.      * @ORM\GeneratedValue(strategy="IDENTITY")
  21.      */
  22.     private $idtext;
  23. }