<?php
namespace Acme\SudcmsBundle\Entity;
use Acme\SudcmsBundle\Repository\EcoMarksRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: EcoMarksRepository::class)]
class EcoMarks
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'string', length: 255)]
private $mark;
#[ORM\Column(type: 'integer', nullable: true)]
private $siteId;
public function getId(): ?int
{
return $this->id;
}
public function getMark(): ?string
{
return $this->mark;
}
public function setMark(string $mark): self
{
$this->mark = $mark;
return $this;
}
public function getSiteId(): ?int
{
return $this->siteId;
}
public function setSiteId(?int $siteId): self
{
$this->siteId = $siteId;
return $this;
}
}