src/Entity/SystemIdentifierMapping.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. * @ORM\Entity
  6. * @ORM\Table(name="system_identifier_mappings")
  7. */
  8. class SystemIdentifierMapping extends \App\Entity\BaseEntity
  9. {
  10. /**
  11. * @ORM\Id
  12. * @ORM\Column(type="integer")
  13. * @ORM\GeneratedValue(strategy="AUTO")
  14. */
  15. private $id;
  16. /**
  17. * @ORM\Column(type="string", nullable=true)
  18. */
  19. private $targetLocalIdentifier;
  20. /**
  21. * @ORM\Column(type="string", nullable=true)
  22. */
  23. private $sourceIdentifier;
  24. /**
  25. * @ORM\Column(type="string", nullable=true)
  26. */
  27. private $entityClass;
  28. /**
  29. * @ORM\Column(type="string", nullable=true)
  30. */
  31. private $sourceSystem;
  32. /**
  33. * @ORM\Column(type="string", nullable=true)
  34. */
  35. private $status;
  36. /**
  37. * @ORM\Column(type="string", length=4000, nullable=true)
  38. */
  39. private $lastDataFingerprint;
  40. /**
  41. * @ORM\Column(type="string", length=4000, nullable=true)
  42. */
  43. private $messageUid;
  44. public function getId(): ?int
  45. {
  46. return $this->id;
  47. }
  48. public function setId($id)
  49. {
  50. $this->id = $id;
  51. return $this;
  52. }
  53. public function getTargetLocalIdentifier(): ?string
  54. {
  55. return $this->targetLocalIdentifier;
  56. }
  57. public function setTargetLocalIdentifier(?string $targetLocalIdentifier): static
  58. {
  59. $this->targetLocalIdentifier = $targetLocalIdentifier;
  60. return $this;
  61. }
  62. public function getSourceIdentifier(): ?string
  63. {
  64. return $this->sourceIdentifier;
  65. }
  66. public function setSourceIdentifier(?string $sourceIdentifier): static
  67. {
  68. $this->sourceIdentifier = $sourceIdentifier;
  69. return $this;
  70. }
  71. public function getEntityClass(): ?string
  72. {
  73. return $this->entityClass;
  74. }
  75. public function setEntityClass(?string $entityClass): static
  76. {
  77. $this->entityClass = $entityClass;
  78. return $this;
  79. }
  80. public function getSourceSystem(): ?string
  81. {
  82. return $this->sourceSystem;
  83. }
  84. public function setSourceSystem(?string $sourceSystem): static
  85. {
  86. $this->sourceSystem = $sourceSystem;
  87. return $this;
  88. }
  89. public function getStatus(): ?string
  90. {
  91. return $this->status;
  92. }
  93. public function setStatus(?string $status): static
  94. {
  95. $this->status = $status;
  96. return $this;
  97. }
  98. public function getLastDataFingerprint(): ?string
  99. {
  100. return $this->lastDataFingerprint;
  101. }
  102. public function setLastDataFingerprint(?string $lastDataFingerprint): static
  103. {
  104. $this->lastDataFingerprint = $lastDataFingerprint;
  105. return $this;
  106. }
  107. public function getMessageUid(): ?string
  108. {
  109. return $this->messageUid;
  110. }
  111. public function setMessageUid(?string $messageUid): static
  112. {
  113. $this->messageUid = $messageUid;
  114. return $this;
  115. }
  116. }