add hiltes log on Order
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user