<?php
namespace App\Entity;
use App\Repository\TalukaRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: TalukaRepository::class), ORM\Table(name: 'talukas')]
class Taluka implements \Stringable
{
#[ORM\Id, ORM\GeneratedValue, ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'string', length: 100)]
private $name;
#[ORM\Column(type: 'string', length: 100, unique: true)]
private $code;
#[ORM\ManyToOne(targetEntity: District::class), ORM\JoinColumn(nullable: false)]
private $district;
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 getDistrict(): ?District
{
return $this->district;
}
public function setDistrict(?District $district): self
{
$this->district = $district;
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();
}
}