src/Entity/System/AdditionalInfoQuestion.php line 15

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