'CURRENT_TIMESTAMP'])] private ?DateTimeInterface $changeDate = null; #[ORM\Column(type: Types::TEXT, nullable: true)] private ?string $hiltes = null; public function getId(): ?int { return $this->id; } public function getOrderId(): ?string { return $this->orderId; } public function setOrderId(string $orderId): self { $this->orderId = $orderId; return $this; } public function getStatus(): ?int { return $this->status; } public function setStatus(int $status): self { $this->status = $status; return $this; } public function getData(): array { return $this->data; } public function setData(array $data): self { $this->data = $data; return $this; } public function getChangeDate(): ?DateTimeInterface { return $this->changeDate; } public function setChangeDate(DateTimeInterface $changeDate): static { $this->changeDate = $changeDate; return $this; } public function getHiltes(): ?string { return $this->hiltes; } public function setHiltes(?string $hiltes): static { $this->hiltes = $hiltes; return $this; } }