<?phpnamespace App\Entity;use App\Repository\PipelineIdentiteVisuelleGlobalRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: PipelineIdentiteVisuelleGlobalRepository::class)]class PipelineIdentiteVisuelleGlobal{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'integer')] private $id; #[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineIdentiteVisuelleGlobalDesigners')] private ?TrelloList $trelloListDesigner; #[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineIdentiteVisuelleGlobalClientReturns')] private ?TrelloList $trelloListClientReturn; #[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineIdentiteVisuelleGlobalOnlines')] private ?TrelloList $trelloListOnline; #[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineIdentiteVisuelleGlobalEnteteUploader')] private ?TrelloList $trelloListEnteteUploader; #[ORM\ManyToOne(targetEntity: TrelloList::class, inversedBy: 'pipelineIdentiteVisuelleGlobals')] private $trelloListRudy; #[ORM\Column(type: 'string', length: 255)] private ?string $tagDesigner; #[ORM\Column(type: 'string', length: 255)] private ?string $tagEnteteUploader; #[ORM\Column(type: 'string', length: 255)] private ?string $tagRudy; #[ORM\ManyToOne(targetEntity: TrelloList::class)] private $trelloListShippingProgress; public function getId(): ?int { return $this->id; } public function getTrelloListDesigner(): ?TrelloList { return $this->trelloListDesigner; } public function setTrelloListDesigner(?TrelloList $trelloListDesigner): self { $this->trelloListDesigner = $trelloListDesigner; return $this; } public function getTrelloListClientReturn(): ?TrelloList { return $this->trelloListClientReturn; } public function setTrelloListClientReturn(?TrelloList $trelloListClientReturn): self { $this->trelloListClientReturn = $trelloListClientReturn; return $this; } public function getTrelloListOnline(): ?TrelloList { return $this->trelloListOnline; } public function setTrelloListOnline(?TrelloList $trelloListOnline): self { $this->trelloListOnline = $trelloListOnline; return $this; } public function getTrelloListEnteteUploader(): ?TrelloList { return $this->trelloListEnteteUploader; } public function setTrelloListEnteteUploader(?TrelloList $trelloListEnteteUploader): self { $this->trelloListEnteteUploader = $trelloListEnteteUploader; return $this; } public function getTrelloListRudy(): ?TrelloList { return $this->trelloListRudy; } public function setTrelloListRudy(?TrelloList $trelloListRudy): self { $this->trelloListRudy = $trelloListRudy; return $this; } public function getTagDesigner(): ?string { return $this->tagDesigner; } public function setTagDesigner(string $tagDesigner): self { $this->tagDesigner = $tagDesigner; return $this; } public function getTagEnteteUploader(): ?string { return $this->tagEnteteUploader; } public function setTagEnteteUploader(string $tagEnteteUploader): self { $this->tagEnteteUploader = $tagEnteteUploader; return $this; } public function getTagRudy(): ?string { return $this->tagRudy; } public function setTagRudy(string $tagRudy): self { $this->tagRudy = $tagRudy; return $this; } public function getTrelloListShippingProgress(): ?TrelloList { return $this->trelloListShippingProgress; } public function setTrelloListShippingProgress(?TrelloList $trelloListShippingProgress): self { $this->trelloListShippingProgress = $trelloListShippingProgress; return $this; }}