src/Entity/TourinsoftV3ThesaurusMapping.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity (repositoryClass="App\Repository\TourinsoftV3ThesaurusMappingRepository")
  6.  */
  7. class TourinsoftV3ThesaurusMapping
  8. {
  9.     /**
  10.      * @ORM\Id()
  11.      * @ORM\GeneratedValue()
  12.      * @ORM\Column(type="integer")
  13.      */
  14.     private $id;
  15.     public function getId() : ?int
  16.     {
  17.         return $this->id;
  18.     }
  19.     /**
  20.      * @var string|null
  21.      *
  22.      * @ORM\Column(name="thesID", type="string", length=255, nullable=true)
  23.      */
  24.     private $thesID;
  25.     /**
  26.      * @var string|null
  27.      *
  28.      * @ORM\Column(name="typeReservationThesID", type="string", length=255, nullable=true)
  29.      */
  30.     private $typeReservationThesID;
  31.     /**
  32.      * @var string|null
  33.      *
  34.      * @ORM\Column(name="productField", type="string", length=255, nullable=true)
  35.      */
  36.     private $productField;
  37.     /**
  38.      * @ORM\Column(type="string", length=255, nullable=true)
  39.      */
  40.     private $name;
  41.     public function getThesID() : ?string
  42.     {
  43.         return $this->thesID;
  44.     }
  45.     public function setThesID(?string $thesID) : self
  46.     {
  47.         $this->thesID $thesID;
  48.         return $this;
  49.     }
  50.     public function getProductField() : ?string
  51.     {
  52.         return $this->productField;
  53.     }
  54.     public function setProductField(?string $productField) : self
  55.     {
  56.         $this->productField $productField;
  57.         return $this;
  58.     }
  59.     public function getTypeReservationThesID() : ?string
  60.     {
  61.         return $this->typeReservationThesID;
  62.     }
  63.     public function setTypeReservationThesID(?string $typeReservationThesID) : self
  64.     {
  65.         $this->typeReservationThesID $typeReservationThesID;
  66.         return $this;
  67.     }
  68.     public function getName() : ?string
  69.     {
  70.         return $this->name;
  71.     }
  72.     public function setName(?string $name) : self
  73.     {
  74.         $this->name $name;
  75.         return $this;
  76.     }
  77. }