src/Entity/OldEvents.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity(repositoryClass="App\Repository\OldEventsRepository")
  6.  */
  7. class OldEvents
  8. {
  9.     /**
  10.      * @ORM\Id()
  11.      * @ORM\GeneratedValue()
  12.      * @ORM\Column(type="integer")
  13.      */
  14.     private $id;
  15.     /**
  16.      * @ORM\Column(type="string", length=255)
  17.      */
  18.     private $label;
  19.     /**
  20.      * @ORM\Column(type="string", length=255)
  21.      */
  22.     private $action;
  23.     /**
  24.      * @ORM\Column(type="string", length=255)
  25.      */
  26.     private $url;
  27.     /**
  28.      * @ORM\Column(type="integer")
  29.      */
  30.     private $beacon;
  31.     /**
  32.      * @ORM\Column(type="integer")
  33.      */
  34.     private $hidden;
  35.     /**
  36.      * @ORM\Column(type="integer")
  37.      */
  38.     private $interaction;
  39.     /**
  40.      * @ORM\Column(type="string", length=255)
  41.      */
  42.     private $custom;
  43.     /**
  44.      * @ORM\Column(type="integer")
  45.      */
  46.     private $external;
  47.     /**
  48.      * @ORM\Column(type="bigint")
  49.      */
  50.     private $old_id;
  51.     public function getId()
  52.     {
  53.         return $this->id;
  54.     }
  55.     public function getLabel(): ?string
  56.     {
  57.         return $this->label;
  58.     }
  59.     public function setLabel(string $label): self
  60.     {
  61.         $this->label $label;
  62.         return $this;
  63.     }
  64.     public function getAction(): ?string
  65.     {
  66.         return $this->action;
  67.     }
  68.     public function setAction(string $action): self
  69.     {
  70.         $this->action $action;
  71.         return $this;
  72.     }
  73.     public function getUrl(): ?string
  74.     {
  75.         return $this->url;
  76.     }
  77.     public function setUrl(string $url): self
  78.     {
  79.         $this->url $url;
  80.         return $this;
  81.     }
  82.     public function getBeacon(): ?int
  83.     {
  84.         return $this->beacon;
  85.     }
  86.     public function setBeacon(int $beacon): self
  87.     {
  88.         $this->beacon $beacon;
  89.         return $this;
  90.     }
  91.     public function getHidden(): ?int
  92.     {
  93.         return $this->hidden;
  94.     }
  95.     public function setHidden(int $hidden): self
  96.     {
  97.         $this->hidden $hidden;
  98.         return $this;
  99.     }
  100.     public function getInteraction(): ?int
  101.     {
  102.         return $this->interaction;
  103.     }
  104.     public function setInteraction(int $interaction): self
  105.     {
  106.         $this->interaction $interaction;
  107.         return $this;
  108.     }
  109.     public function getCustom(): ?string
  110.     {
  111.         return $this->custom;
  112.     }
  113.     public function setCustom(string $custom): self
  114.     {
  115.         $this->custom $custom;
  116.         return $this;
  117.     }
  118.     public function getExternal(): ?int
  119.     {
  120.         return $this->external;
  121.     }
  122.     public function setExternal(int $external): self
  123.     {
  124.         $this->external $external;
  125.         return $this;
  126.     }
  127.     public function getOldId(): ?int
  128.     {
  129.         return $this->old_id;
  130.     }
  131.     public function setOldId(int $old_id): self
  132.     {
  133.         $this->old_id $old_id;
  134.         return $this;
  135.     }
  136. }