up: Member

* add checked property and setId method to support note editing and retrieval and display of form parameters
This commit is contained in:
Ryan Prather 2025-02-09 18:14:53 -05:00
parent 1fd72d95e0
commit 4fd42970ac

View File

@ -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;
}
} }