<?php
namespace Acme\SudcmsBundle\Entity;
use Acme\SudcmsBundle\Repository\FormElementsValuesRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: FormElementsValuesRepository::class)]
class FormElementsValues
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'integer')]
private $element_id;
#[ORM\Column(type: 'string', length: 255)]
private $value;
public function getId(): ?int
{
return $this->id;
}
public function getElementId(): ?int
{
return $this->element_id;
}
public function setElementId(int $element_id): self
{
$this->element_id = $element_id;
return $this;
}
public function getValue(): ?string
{
return $this->value;
}
public function setValue(string $value): self
{
$this->value = $value;
return $this;
}
}