add hiltes log on Order

This commit is contained in:
Marko
2024-03-25 17:37:11 +01:00
parent 13d199768e
commit 9dbe5e5de7
4 changed files with 64 additions and 52 deletions

View File

@@ -41,6 +41,9 @@ class Order
#[ORM\Column(name: 'change_date', type: Types::DATETIME_MUTABLE, nullable: true, options: ['default' => 'CURRENT_TIMESTAMP'])]
private ?DateTimeInterface $changeDate = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $hiltes = null;
public function getId(): ?int
{
return $this->id;
@@ -93,4 +96,16 @@ class Order
return $this;
}
public function getHiltes(): ?string
{
return $this->hiltes;
}
public function setHiltes(?string $hiltes): static
{
$this->hiltes = $hiltes;
return $this;
}
}