src/Entity/UserAttendance.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\UserAttendanceRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=UserAttendanceRepository::class)
  7.  */
  8. class UserAttendance
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer", name="idUserAttendance")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="integer", nullable=true)
  18.      */
  19.     private $idUser;
  20.     /**
  21.      * @ORM\Column(type="integer", nullable=true)
  22.      */
  23.     private $idSessionStage;
  24.     /**
  25.      * @ORM\Column(type="string", length=1, nullable=true)
  26.      */
  27.     private $attendance;
  28.     /**
  29.      * @ORM\Column(type="boolean", nullable=true)
  30.      */
  31.     private $emailSent;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $signedAt;
  36.     public function getId(): ?int
  37.     {
  38.         return $this->id;
  39.     }
  40.     public function getIdUser(): ?int
  41.     {
  42.         return $this->idUser;
  43.     }
  44.     public function setIdUser(?int $idUser): self
  45.     {
  46.         $this->idUser $idUser;
  47.         return $this;
  48.     }
  49.     public function getIdSessionStage(): ?int
  50.     {
  51.         return $this->idSessionStage;
  52.     }
  53.     public function setIdSessionStage(?int $idSessionStage): self
  54.     {
  55.         $this->idSessionStage $idSessionStage;
  56.         return $this;
  57.     }
  58.     public function getAttendance(): ?string
  59.     {
  60.         return $this->attendance;
  61.     }
  62.     public function setAttendance(?string $attendance): self
  63.     {
  64.         $this->attendance $attendance;
  65.         return $this;
  66.     }
  67.     public function getEmailSent(): ?bool
  68.     {
  69.         return $this->emailSent;
  70.     }
  71.     public function setEmailSent(?bool $emailSent): self
  72.     {
  73.         $this->emailSent $emailSent;
  74.         return $this;
  75.     }
  76.     public function getSignedAt(): ?string
  77.     {
  78.         return $this->signedAt;
  79.     }
  80.     public function setSignedAt(?string $signedAt): self
  81.     {
  82.         $this->signedAt $signedAt;
  83.         return $this;
  84.     }
  85. }