src/Entity/CRM/BhpParticipants.php line 10
<?phpnamespace App\Entity\CRM;use App\Repository\BhpParticipantsRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: BhpParticipantsRepository::class)]class BhpParticipants{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255)]private ?string $firstName = null;#[ORM\Column(length: 255)]private ?string $lastName = null;#[ORM\Column(type: Types::DATE_MUTABLE)]private ?\DateTimeInterface $birthDate = null;#[ORM\Column(length: 255)]private ?string $specialization = null;#[ORM\ManyToOne(inversedBy: 'bhpParticipants')]#[ORM\JoinColumn(nullable: false)]private ?BhpJournals $bhpJournal = null;#[ORM\Column(type: Types::DATETIME_MUTABLE)]private ?\DateTimeInterface $addedDate = null;#[ORM\Column]private ?int $certificateNumber = null;public function getId(): ?int{return $this->id;}public function getFirstName(): ?string{return $this->firstName;}public function setFirstName(string $firstName): static{$this->firstName = $firstName;return $this;}public function getLastName(): ?string{return $this->lastName;}public function setLastName(string $lastName): static{$this->lastName = $lastName;return $this;}public function getBirthDate(): ?\DateTimeInterface{return $this->birthDate;}public function setBirthDate(\DateTimeInterface $birthDate): static{$this->birthDate = $birthDate;return $this;}public function getSpecialization(): ?string{return $this->specialization;}public function setSpecialization(string $specialization): static{$this->specialization = $specialization;return $this;}public function getBhpJournal(): ?BhpJournals{return $this->bhpJournal;}public function setBhpJournal(?BhpJournals $bhpJournal): static{$this->bhpJournal = $bhpJournal;return $this;}public function getAddedDate(): ?\DateTimeInterface{return $this->addedDate;}public function setAddedDate(\DateTimeInterface $addedDate): static{$this->addedDate = $addedDate;return $this;}public function getCertificateNumber(): ?int{return $this->certificateNumber;}public function setCertificateNumber(int $certificateNumber): static{$this->certificateNumber = $certificateNumber;return $this;}}