<?php
namespace App\Entity;
use App\Repository\Actuv2HelpRepository;
use DateTime;
use DateTimeInterface;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: Actuv2HelpRepository::class)]
class Actuv2Help
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
/**
* @var DateTime|null
*
*/
#[ORM\Column(name: 'date', type: 'date', nullable: true, options: ['comment' => 'période'])]
private $date;
#[ORM\Column(type: 'string', length: 255)]
private $idHelp;
#[ORM\Column(type: 'string', length: 255)]
private $helpName;
public function getId(): ?int
{
return $this->id;
}
public function getDate(): ?DateTimeInterface
{
return $this->date;
}
public function setDate(?DateTimeInterface $date): self
{
$this->date = $date;
return $this;
}
public function getIdHelp(): ?string
{
return $this->idHelp;
}
public function setIdHelp(string $idHelp): self
{
$this->idHelp = $idHelp;
return $this;
}
public function getHelpName(): ?string
{
return $this->helpName;
}
public function setHelpName(string $helpName): self
{
$this->helpName = $helpName;
return $this;
}
}