<?phpnamespace App\Entity\Gos;use App\Repository\Gos\PaczkomatyShipmentsRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=PaczkomatyShipmentsRepository::class) */class PaczkomatyShipments{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\ManyToOne(targetEntity=Orders::class, inversedBy="paczkomatyShipments") * @ORM\JoinColumn(nullable=false) */ private $orders; /** * @ORM\Column(type="bigint") */ private $shipmentId; /** * @ORM\Column(type="text") */ private $fullResponse; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $targetPoint; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $targetPointAddress; public function getId(): ?int { return $this->id; } public function getOrders(): ?Orders { return $this->orders; } public function setOrders(?Orders $orders): self { $this->orders = $orders; return $this; } public function getShipmentId(): ?int { return $this->shipmentId; } public function setShipmentId(int $shipmentId): self { $this->shipmentId = $shipmentId; return $this; } public function getFullResponse(): ?string { return $this->fullResponse; } public function setFullResponse(string $fullResponse): self { $this->fullResponse = $fullResponse; return $this; } public function getTargetPoint(): ?string { return $this->targetPoint; } public function setTargetPoint(?string $targetPoint): self { $this->targetPoint = $targetPoint; return $this; } public function getTargetPointAddress(): ?string { return $this->targetPointAddress; } public function setTargetPointAddress(?string $targetPointAddress): self { $this->targetPointAddress = $targetPointAddress; return $this; }}