Add new date/time objects to store when reports signed by supervisor and case worker
This commit is contained in:
parent
e4b1704519
commit
af67d79a46
@ -31,6 +31,12 @@ class StaffNote
|
|||||||
#[ORM\Column(length: 500, nullable: true)]
|
#[ORM\Column(length: 500, nullable: true)]
|
||||||
private ?string $recommendations = null;
|
private ?string $recommendations = null;
|
||||||
|
|
||||||
|
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
|
||||||
|
private ?\DateTimeInterface $workerSignDatetime = null;
|
||||||
|
|
||||||
|
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
|
||||||
|
private ?\DateTimeInterface $supervisorSignDateTime = null;
|
||||||
|
|
||||||
public function getId(): ?int
|
public function getId(): ?int
|
||||||
{
|
{
|
||||||
return $this->id;
|
return $this->id;
|
||||||
@ -98,4 +104,28 @@ class StaffNote
|
|||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getWorkerSignDatetime(): ?\DateTimeInterface
|
||||||
|
{
|
||||||
|
return $this->workerSignDatetime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setWorkerSignDatetime(?\DateTimeInterface $workerSignDatetime): static
|
||||||
|
{
|
||||||
|
$this->workerSignDatetime = $workerSignDatetime;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getSupervisorSignDateTime(): ?\DateTimeInterface
|
||||||
|
{
|
||||||
|
return $this->supervisorSignDateTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setSupervisorSignDateTime(?\DateTimeInterface $supervisorSignDateTime): static
|
||||||
|
{
|
||||||
|
$this->supervisorSignDateTime = $supervisorSignDateTime;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user