<?php
namespace App\Entity;
use App\Repository\VillageRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: VillageRepository::class), ORM\Table(name: 'villages')]
class Village 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\Column(type: 'integer', nullable: true)]
private int|null $population = 0;
#[ORM\ManyToOne(targetEntity: Taluka::class), ORM\JoinColumn(nullable: false)]
private $taluka;
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 getTaluka(): ?Taluka
{
return $this->taluka;
}
public function setTaluka(Taluka $taluka): self
{
$this->taluka = $taluka;
return $this;
}
public function getCode(): ?string
{
return $this->code;
}
public function setCode(string $code): self
{
$this->code = $code;
return $this;
}
public function getPopulation(): ?int
{
return $this->population;
}
public function setPopulation(int $population): self
{
$this->population = $population;
return $this;
}
public function __toString(): string
{
return $this->getName();
}
}