increase speed

This commit is contained in:
Marko
2024-03-20 17:32:52 +01:00
parent 060b481319
commit df4d62bfdf
15 changed files with 1907 additions and 777 deletions

View File

@@ -28,9 +28,8 @@ class Order
#[ApiProperty(identifier: false)]
private ?int $id = null;
#[ORM\Column(length: 255,unique: true)]
#[ORM\Column(length: 255, unique: true)]
#[ApiProperty(identifier: true)]
private ?string $orderId = null;
#[ORM\Column]
@@ -42,12 +41,6 @@ class Order
#[ORM\Column(name: 'change_date', type: Types::DATETIME_MUTABLE, nullable: true, options: ['default' => 'CURRENT_TIMESTAMP'])]
private ?DateTimeInterface $changeDate = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $han = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $marke = null;
public function getId(): ?int
{
return $this->id;
@@ -100,28 +93,4 @@ class Order
return $this;
}
public function getHan(): ?string
{
return $this->han;
}
public function setHan(?string $han): static
{
$this->han = $han;
return $this;
}
public function getMarke(): ?string
{
return $this->marke;
}
public function setMarke(?string $marke): static
{
$this->marke = $marke;
return $this;
}
}