<?php
namespace App\Entity;
/**
* RookieDistrict
*/
class RookieDistrict
{
private int $id;
private string $districtName;
private int $eventType;
private int $eventState;
public function getId(): int
{
return $this->id;
}
public function setId(int $id): void
{
$this->id = $id;
}
public function getDistrictName(): string
{
return $this->districtName;
}
public function setDistrictName(string $districtName): void
{
$this->districtName = $districtName;
}
public function getEventType(): int
{
return $this->eventType;
}
public function setEventType(int $eventType): void
{
$this->eventType = $eventType;
}
public function getEventState(): int
{
return $this->eventState;
}
public function setEventState(int $eventState): void
{
$this->eventState = $eventState;
}
}