<?php
namespace App\Entity;
use App\Repository\PipelineGmbGlobalRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: PipelineGmbGlobalRepository::class)]
class PipelineGmbGlobal
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineGmbGlobalCreatorGmbs')]
private ?TrelloList $trelloListCreatorGmb;
#[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineGmbGlobalClientReturns')]
private ?TrelloList $trelloListClientReturn;
#[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineGmbGlobalRudys')]
private ?TrelloList $trelloListRudy;
#[ORM\Column(type: 'string', length: 255)]
private ?string $tagCreatorGmb;
#[ORM\Column(type: 'string', length: 255)]
private ?string $tagRudy;
public function getId(): ?int
{
return $this->id;
}
public function getTrelloListCreatorGmb(): ?TrelloList
{
return $this->trelloListCreatorGmb;
}
public function setTrelloListCreatorGmb(?TrelloList $trelloListCreatorGmb): self
{
$this->trelloListCreatorGmb = $trelloListCreatorGmb;
return $this;
}
public function getTrelloListClientReturn(): ?TrelloList
{
return $this->trelloListClientReturn;
}
public function setTrelloListClientReturn(?TrelloList $trelloListClientReturn): self
{
$this->trelloListClientReturn = $trelloListClientReturn;
return $this;
}
public function getTrelloListRudy(): ?TrelloList
{
return $this->trelloListRudy;
}
public function setTrelloListRudy(?TrelloList $trelloListRudy): self
{
$this->trelloListRudy = $trelloListRudy;
return $this;
}
public function getTagCreatorGmb(): ?string
{
return $this->tagCreatorGmb;
}
public function setTagCreatorGmb(string $tagCreatorGmb): self
{
$this->tagCreatorGmb = $tagCreatorGmb;
return $this;
}
public function getTagRudy(): ?string
{
return $this->tagRudy;
}
public function setTagRudy(string $tagRudy): self
{
$this->tagRudy = $tagRudy;
return $this;
}
}