src/Entity/PipelineIdentiteVisuelleGlobal.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PipelineIdentiteVisuelleGlobalRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassPipelineIdentiteVisuelleGlobalRepository::class)]
  6. class PipelineIdentiteVisuelleGlobal
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\ManyToOne(targetEntityTrelloList::class, inversedBy'pipelineIdentiteVisuelleGlobalDesigners')]
  13.     private ?TrelloList $trelloListDesigner;
  14.     #[ORM\ManyToOne(targetEntityTrelloList::class, inversedBy'pipelineIdentiteVisuelleGlobalClientReturns')]
  15.     private ?TrelloList $trelloListClientReturn;
  16.     #[ORM\ManyToOne(targetEntityTrelloList::class, inversedBy'pipelineIdentiteVisuelleGlobalOnlines')]
  17.     private ?TrelloList $trelloListOnline;
  18.     #[ORM\ManyToOne(targetEntityTrelloList::class, inversedBy'pipelineIdentiteVisuelleGlobalEnteteUploader')]
  19.     private ?TrelloList $trelloListEnteteUploader;
  20.     #[ORM\ManyToOne(targetEntityTrelloList::class, inversedBy'pipelineIdentiteVisuelleGlobals')]
  21.     private $trelloListRudy;
  22.     #[ORM\Column(type'string'length255)]
  23.     private ?string $tagDesigner;
  24.     #[ORM\Column(type'string'length255)]
  25.     private ?string $tagEnteteUploader;
  26.     #[ORM\Column(type'string'length255)]
  27.     private ?string $tagRudy;
  28.     #[ORM\ManyToOne(targetEntityTrelloList::class)]
  29.     private $trelloListShippingProgress;
  30.     public function getId(): ?int
  31.     {
  32.         return $this->id;
  33.     }
  34.     public function getTrelloListDesigner(): ?TrelloList
  35.     {
  36.         return $this->trelloListDesigner;
  37.     }
  38.     public function setTrelloListDesigner(?TrelloList $trelloListDesigner): self
  39.     {
  40.         $this->trelloListDesigner $trelloListDesigner;
  41.         return $this;
  42.     }
  43.     public function getTrelloListClientReturn(): ?TrelloList
  44.     {
  45.         return $this->trelloListClientReturn;
  46.     }
  47.     public function setTrelloListClientReturn(?TrelloList $trelloListClientReturn): self
  48.     {
  49.         $this->trelloListClientReturn $trelloListClientReturn;
  50.         return $this;
  51.     }
  52.     public function getTrelloListOnline(): ?TrelloList
  53.     {
  54.         return $this->trelloListOnline;
  55.     }
  56.     public function setTrelloListOnline(?TrelloList $trelloListOnline): self
  57.     {
  58.         $this->trelloListOnline $trelloListOnline;
  59.         return $this;
  60.     }
  61.     public function getTrelloListEnteteUploader(): ?TrelloList
  62.     {
  63.         return $this->trelloListEnteteUploader;
  64.     }
  65.     public function setTrelloListEnteteUploader(?TrelloList $trelloListEnteteUploader): self
  66.     {
  67.         $this->trelloListEnteteUploader $trelloListEnteteUploader;
  68.         return $this;
  69.     }
  70.     public function getTrelloListRudy(): ?TrelloList
  71.     {
  72.         return $this->trelloListRudy;
  73.     }
  74.     public function setTrelloListRudy(?TrelloList $trelloListRudy): self
  75.     {
  76.         $this->trelloListRudy $trelloListRudy;
  77.         return $this;
  78.     }
  79.     public function getTagDesigner(): ?string
  80.     {
  81.         return $this->tagDesigner;
  82.     }
  83.     public function setTagDesigner(string $tagDesigner): self
  84.     {
  85.         $this->tagDesigner $tagDesigner;
  86.         return $this;
  87.     }
  88.     public function getTagEnteteUploader(): ?string
  89.     {
  90.         return $this->tagEnteteUploader;
  91.     }
  92.     public function setTagEnteteUploader(string $tagEnteteUploader): self
  93.     {
  94.         $this->tagEnteteUploader $tagEnteteUploader;
  95.         return $this;
  96.     }
  97.     public function getTagRudy(): ?string
  98.     {
  99.         return $this->tagRudy;
  100.     }
  101.     public function setTagRudy(string $tagRudy): self
  102.     {
  103.         $this->tagRudy $tagRudy;
  104.         return $this;
  105.     }
  106.     public function getTrelloListShippingProgress(): ?TrelloList
  107.     {
  108.         return $this->trelloListShippingProgress;
  109.     }
  110.     public function setTrelloListShippingProgress(?TrelloList $trelloListShippingProgress): self
  111.     {
  112.         $this->trelloListShippingProgress $trelloListShippingProgress;
  113.         return $this;
  114.     }
  115. }