src/Entity/System/AdditionalInfoQuestion.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity\System;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Table(name="additional_info_question")
  6.  *
  7.  * @ORM\Entity(repositoryClass="App\Repository\System\AdditionalInfoQuestionRepository")
  8.  */
  9. class AdditionalInfoQuestion
  10. {
  11.     public const INTERESTS_ID 1;
  12.     public const EXPERIENCE_SELLING_ID 2;
  13.     public const EXPERIENCE_DROPSHIPPING_ID 3;
  14.     public const TEAM_SIZE_ID 4;
  15.     public const ECOMMERCES_ID 5;
  16.     public const MARKETPLACES_ID 6;
  17.     public const PRODUCTS_ID 7;
  18.     public const SELLING_CHANNEL_ID 8;
  19.     public const CONTACT_PREFERENCES_ID 9;
  20.     public const ECOMMERCE_PLATFORMS_CLIENT 10;
  21.     public const MARKETPLACES_PLATFORMS_CLIENT 11;
  22.     /**
  23.      * @var int
  24.      *
  25.      * @ORM\Id
  26.      *
  27.      * @ORM\Column(name="id", type="integer")
  28.      */
  29.     private $id;
  30.     /**
  31.      * @var bool
  32.      *
  33.      * @ORM\Column(type="boolean")
  34.      */
  35.     private $multipleAnswer;
  36.     /**
  37.      * @var bool
  38.      *
  39.      * @ORM\Column(type="boolean")
  40.      */
  41.     private $active;
  42.     /**
  43.      * @var AdditionalInfoQuestionTranslation
  44.      *
  45.      * @ORM\OneToMany(targetEntity="AdditionalInfoQuestionTranslation", mappedBy="question")
  46.      */
  47.     private $translations;
  48. }