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]
|
#[ORM\Column]
|
||||||
private ?bool $dcsApproved = null;
|
private ?bool $dcsApproved = null;
|
||||||
|
|
||||||
|
private ?bool $checked = false;
|
||||||
|
|
||||||
public function getId(): ?Uuid
|
public function getId(): ?Uuid
|
||||||
{
|
{
|
||||||
return $this->id;
|
return $this->id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function setId(?Uuid $id): static
|
||||||
|
{
|
||||||
|
$this->id = $id;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
public function getCaseId(): ?MemberCase
|
public function getCaseId(): ?MemberCase
|
||||||
{
|
{
|
||||||
return $this->memberCase;
|
return $this->memberCase;
|
||||||
@ -451,4 +459,16 @@ class Member
|
|||||||
|
|
||||||
return $this;
|
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