src/Entity/SessionStage.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SessionStageRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=SessionStageRepository::class)
  7.  */
  8. class SessionStage
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(name="idSessionStage", type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="integer", nullable=true)
  18.      */
  19.     private $idCourseSession;
  20.     /**
  21.      * @ORM\Column(type="boolean", nullable=true)
  22.      */
  23.     private $seqnum;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $title;
  28.     /**
  29.      * @ORM\Column(type="datetime", nullable=true)
  30.      */
  31.     private $startTime;
  32.     /**
  33.      * @ORM\Column(type="time", nullable=true)
  34.      */
  35.     private $endTime;
  36.     /**
  37.      * @ORM\Column(type="datetime", nullable=true)
  38.      */
  39.     private $stageDate;
  40.     /**
  41.      * @ORM\Column(type="string", length=255, nullable=true)
  42.      */
  43.     private $location;
  44.     /**
  45.      * @ORM\Column(type="integer", nullable=true)
  46.      */
  47.     private $onSite;
  48.     /**
  49.      * @ORM\Column(type="integer", nullable=true)
  50.      */
  51.     private $remote;
  52.     /**
  53.      * @ORM\Column(type="boolean", nullable=true)
  54.      */
  55.     private $isActive;
  56.     /**
  57.      * @ORM\Column(type="string", length=255, nullable=true)
  58.      */
  59.     private $link;
  60.     public function getId(): ?int
  61.     {
  62.         return $this->id;
  63.     }
  64.     public function getIdCourseSession(): ?int
  65.     {
  66.         return $this->idCourseSession;
  67.     }
  68.     public function setIdCourseSession(?int $idCourseSession): self
  69.     {
  70.         $this->idCourseSession $idCourseSession;
  71.         return $this;
  72.     }
  73.     public function getSeqnum(): ?bool
  74.     {
  75.         return $this->seqnum;
  76.     }
  77.     public function setSeqnum(?bool $seqnum): self
  78.     {
  79.         $this->seqnum $seqnum;
  80.         return $this;
  81.     }
  82.     public function getStageDate(): ?\DateTimeInterface
  83.     {
  84.         return $this->stageDate;
  85.     }
  86.     public function setStageDate(?\DateTimeInterface $stageDate): self
  87.     {
  88.         $this->stageDate $stageDate;
  89.         return $this;
  90.     }
  91.     public function getLocation(): ?string
  92.     {
  93.         return $this->location;
  94.     }
  95.     public function setLocation(?string $location): self
  96.     {
  97.         $this->location $location;
  98.         return $this;
  99.     }
  100.     public function getOnSite(): ?int
  101.     {
  102.         return $this->onSite;
  103.     }
  104.     public function setOnSite(?int $onSite): self
  105.     {
  106.         $this->onSite $onSite;
  107.         return $this;
  108.     }
  109.     public function getRemote(): ?int
  110.     {
  111.         return $this->remote;
  112.     }
  113.     public function setRemote(?int $remote): self
  114.     {
  115.         $this->remote $remote;
  116.         return $this;
  117.     }
  118.     public function getIsActive(): ?bool
  119.     {
  120.         return $this->isActive;
  121.     }
  122.     public function setIsActive(?bool $isActive): self
  123.     {
  124.         $this->isActive $isActive;
  125.         return $this;
  126.     }
  127.     public function getTitle(): ?string
  128.     {
  129.         return $this->title;
  130.     }
  131.     public function setTitle(?string $title): self
  132.     {
  133.         $this->title $title;
  134.         return $this;
  135.     }
  136.     public function getStartTime(): ?\DateTimeInterface
  137.     {
  138.         return $this->startTime;
  139.     }
  140.     public function setStartTime(?\DateTimeInterface $startTime): self
  141.     {
  142.         $this->startTime $startTime;
  143.         return $this;
  144.     }
  145.     public function getEndTime(): ?\DateTimeInterface
  146.     {
  147.         return $this->endTime;
  148.     }
  149.     public function setEndTime(?\DateTimeInterface $endTime): self
  150.     {
  151.         $this->endTime $endTime;
  152.         return $this;
  153.     }
  154.     public function getLink(): ?string
  155.     {
  156.         return $this->link;
  157.     }
  158.     public function setLink(?string $link): self
  159.     {
  160.         $this->link $link;
  161.         return $this;
  162.     }
  163. }