<?php
namespace App\Entity;
class RookieDaySchoolDateMapping {
/**
* @var int
*/
private $id;
/**
* @var \DateTime
*/
private $createdAt;
/**
* @var \App\Entity\RookieDaySchool
*/
private $school;
/**
* @var \App\Entity\RookieDayDate
*/
private $eventDate;
/**
* Get id.
*
* @return int
*/
public function getId() {
return $this->id;
}
public function getSchool(): \App\Entity\RookieDaySchool {
return $this->school;
}
public function getEventDate(): \App\Entity\RookieDayDate {
return $this->eventDate;
}
public function setSchool(\App\Entity\RookieDaySchool $school): void {
$this->school = $school;
}
public function setEventDate(\App\Entity\RookieDayDate $eventDate): void {
$this->eventDate = $eventDate;
}
/**
* Set createdAt.
*
* @param \DateTime $createdAt
*
* @return RookieDayBooking
*/
public function setCreatedAt($createdAt) {
$this->createdAt = $createdAt;
return $this;
}
/**
* Get createdAt.
*
* @return \DateTime
*/
public function getCreatedAt() {
return $this->createdAt;
}
}