update slack msg
This commit is contained in:
parent
8f65dca839
commit
a36c67266f
@ -14,7 +14,7 @@
|
||||
<configured-by-url>true</configured-by-url>
|
||||
<remarks>DDEV generated data source</remarks>
|
||||
<jdbc-driver>org.mariadb.jdbc.Driver</jdbc-driver>
|
||||
<jdbc-url>jdbc:mariadb://127.0.0.1:60724/db?user=db&password=db</jdbc-url>
|
||||
<jdbc-url>jdbc:mariadb://127.0.0.1:32788/db?user=db&password=db</jdbc-url>
|
||||
<working-dir>$ProjectFileDir$</working-dir>
|
||||
</data-source>
|
||||
</component>
|
||||
|
@ -42,6 +42,12 @@ 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;
|
||||
@ -94,4 +100,28 @@ 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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user