feat: special agreements for disposition
This commit is contained in:
@@ -50,6 +50,9 @@ class Disposition implements BlameableEntityInterface, TimestampableEntityInterf
|
||||
#[ORM\Column(type: Types::TEXT, nullable: true)]
|
||||
private ?string $remarks;
|
||||
|
||||
#[ORM\Column(type: Types::TEXT, nullable: true)]
|
||||
private ?string $specialAgreements;
|
||||
|
||||
#[ORM\OneToMany(mappedBy: 'disposition', targetEntity: Upload::class, cascade: ['persist', 'remove'])]
|
||||
private Collection $documents;
|
||||
|
||||
@@ -137,6 +140,18 @@ class Disposition implements BlameableEntityInterface, TimestampableEntityInterf
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getSpecialAgreements(): ?string
|
||||
{
|
||||
return $this->specialAgreements;
|
||||
}
|
||||
|
||||
public function setSpecialAgreements(?string $specialAgreements): static
|
||||
{
|
||||
$this->specialAgreements = $specialAgreements;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Collection<int, Upload>
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user