<?php
declare(strict_types=1);
namespace JanusHercules\IndeedCampaignManagement\Domain\Entity;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity]
#[ORM\Table(name: 'icm_sync_config_prio_list_recurrent_job_id_entries')]
class SyncConfigPrioListRecurrentJobIdEntry
{
public function __construct(
string $recurrentJobId
) {
$this->recurrentJobId = $recurrentJobId;
}
#[ORM\Id]
#[ORM\Column(
type: Types::GUID
)]
private string $recurrentJobId;
public function getRecurrentJobId(): string
{
return $this->recurrentJobId;
}
}