2022-05-23 13:22:36 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Entity;
|
|
|
|
|
|
|
|
use App\Repository\MerDMRepository;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
|
|
|
|
//#[ORM\Entity(repositoryClass: MerDMRepository::class)]
|
|
|
|
trait MerDM
|
|
|
|
{
|
|
|
|
// #[ORM\Id]
|
|
|
|
// #[ORM\GeneratedValue]
|
|
|
|
// #[ORM\Column(type: 'integer')]
|
|
|
|
// private $id;
|
|
|
|
|
|
|
|
#[ORM\Column(type: 'integer')]
|
2022-05-24 08:06:04 +00:00
|
|
|
private $offer_id;
|
2022-05-23 13:22:36 +00:00
|
|
|
|
|
|
|
// public function getId(): ?int
|
|
|
|
// {
|
|
|
|
// return $this->id;
|
|
|
|
// }
|
|
|
|
|
|
|
|
public function getOfferId(): ?int
|
|
|
|
{
|
2022-05-24 08:06:04 +00:00
|
|
|
return $this->offer_id;
|
2022-05-23 13:22:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function setOfferId(int $offerId): self
|
|
|
|
{
|
2022-05-24 08:06:04 +00:00
|
|
|
$this->offer_id = $offerId;
|
2022-05-23 13:22:36 +00:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
}
|