<?phpnamespace App\Entity;use App\Repository\WarningPunishConfigRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: WarningPunishConfigRepository::class)]class WarningPunishConfig{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(nullable: true)] private ?int $warning = null; #[ORM\Column(nullable: true)] private ?int $punish = null; #[ORM\Column(nullable: true)] private ?int $start = null; #[ORM\Column(nullable: true)] private ?int $end = null; #[ORM\Column(nullable: true)] private ?int $punishForInterval = null; #[ORM\ManyToOne(inversedBy: 'warningPunishConfigs')] #[ORM\JoinColumn(nullable: false)] private ?School $school = null; #[ORM\ManyToOne(inversedBy: 'warningPunishConfigs')] #[ORM\JoinColumn(nullable: false)] private ?SchoolYear $year = null; public function getId(): ?int { return $this->id; } public function getWarning(): ?int { return $this->warning; } public function setWarning(?int $warning): static { $this->warning = $warning; return $this; } public function getPunish(): ?int { return $this->punish; } public function setPunish(?int $punish): static { $this->punish = $punish; return $this; } public function getStart(): ?int { return $this->start; } public function setStart(?int $start): static { $this->start = $start; return $this; } public function getEnd(): ?int { return $this->end; } public function setEnd(?int $end): static { $this->end = $end; return $this; } public function getPunishForInterval(): ?int { return $this->punishForInterval; } public function setPunishForInterval(?int $punishForInterval): static { $this->punishForInterval = $punishForInterval; return $this; } public function getSchool(): ?School { return $this->school; } public function setSchool(?School $school): static { $this->school = $school; return $this; } public function getYear(): ?SchoolYear { return $this->year; } public function setYear(?SchoolYear $year): static { $this->year = $year; return $this; }}