up: Member
* add checked property and setId method to support note editing and retrieval and display of form parameters
This commit is contained in:
parent
1fd72d95e0
commit
4fd42970ac
@ -103,11 +103,19 @@ class Member
|
||||
#[ORM\Column]
|
||||
private ?bool $dcsApproved = null;
|
||||
|
||||
private ?bool $checked = false;
|
||||
|
||||
public function getId(): ?Uuid
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
|
||||
public function setId(?Uuid $id): static
|
||||
{
|
||||
$this->id = $id;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getCaseId(): ?MemberCase
|
||||
{
|
||||
return $this->memberCase;
|
||||
@ -451,4 +459,16 @@ class Member
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function isChecked(): bool
|
||||
{
|
||||
return $this->checked;
|
||||
}
|
||||
|
||||
public function setChecked(bool $checked): static
|
||||
{
|
||||
$this->checked = $checked;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user