<?php
namespace App\Entity;
use App\Repository\AdvertisingAreaStatusRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: AdvertisingAreaStatusRepository::class)]
class AdvertisingAreaStatus
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
private ?string $name = null;
#[ORM\Column(length: 255)]
private ?string $identifier = null;
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 getIdentifier(): ?string
{
return $this->identifier;
}
public function setIdentifier(string $identifier): self
{
$this->identifier = $identifier;
return $this;
}
}