add isClosed, notes, cost, fileAttachments to bid
This commit is contained in:
parent
d68c3bc66c
commit
04c498afb6
7 changed files with 60 additions and 4 deletions
|
|
@ -9,6 +9,10 @@ class Bid
|
|||
private int $freightOrderId,
|
||||
private int $carrierId,
|
||||
private bool $wasOpened,
|
||||
private bool $isClosed,
|
||||
private ?int $cost,
|
||||
private ?string $notes,
|
||||
private ?array $fileAttachments,
|
||||
) {}
|
||||
|
||||
public function getId(): ?string
|
||||
|
|
@ -49,4 +53,24 @@ class Bid
|
|||
{
|
||||
$this->wasOpened = $wasOpened;
|
||||
}
|
||||
|
||||
public function getCost(): ?int
|
||||
{
|
||||
return $this->cost;
|
||||
}
|
||||
|
||||
public function getNotes(): ?string
|
||||
{
|
||||
return $this->notes;
|
||||
}
|
||||
|
||||
public function getFileAttachments(): ?array
|
||||
{
|
||||
return $this->fileAttachments;
|
||||
}
|
||||
|
||||
public function isClosed(): bool
|
||||
{
|
||||
return $this->isClosed;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue