<?php
namespace App\Entity;
use App\Repository\DistrictRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: DistrictRepository::class), ORM\Table(name: 'districts')]
class District implements \Stringable
{
#[ORM\Id, ORM\GeneratedValue, ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'string', length: 255)]
private $name;
#[ORM\Column(type: 'string', length: 100, unique: true)]
private $code;
#[ORM\ManyToOne(targetEntity: State::class), ORM\JoinColumn(nullable: false)]
private $state;
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getState(): ?State
{
return $this->state;
}
public function setState(State $state): self
{
$this->state = $state;
return $this;
}
public function getCode(): ?string
{
return $this->code;
}
public function setCode(string $code): self
{
$this->code = $code;
return $this;
}
public function __toString(): string
{
return $this->getName();
}
}