<?php
namespace App\Entity;
use App\Repository\ConfigMessengerRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: ConfigMessengerRepository::class)]
class ConfigMessenger
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(nullable: true)]
private ?int $preference = null;
#[ORM\Column(nullable: true)]
private ?int $proposition = null;
#[ORM\Column(nullable: true)]
private ?int $messenger = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $date_creation = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $date_update = null;
public function getId(): ?int
{
return $this->id;
}
public function getPreference(): ?int
{
return $this->preference;
}
public function setPreference(?int $preference): static
{
$this->preference = $preference;
return $this;
}
public function getProposition(): ?int
{
return $this->proposition;
}
public function setProposition(?int $proposition): static
{
$this->proposition = $proposition;
return $this;
}
public function getMessenger(): ?int
{
return $this->messenger;
}
public function setMessenger(?int $messenger): static
{
$this->messenger = $messenger;
return $this;
}
public function getDateCreation(): ?\DateTimeInterface
{
return $this->date_creation;
}
public function setDateCreation(?\DateTimeInterface $date_creation): static
{
$this->date_creation = $date_creation;
return $this;
}
public function getDateUpdate(): ?\DateTimeInterface
{
return $this->date_update;
}
public function setDateUpdate(?\DateTimeInterface $date_update): static
{
$this->date_update = $date_update;
return $this;
}
}