cfmgrv4 init...4

This commit is contained in:
최준흠 2024-10-28 11:38:50 +09:00
parent b5c44e9ca6
commit 9ff5740d3c

View File

@ -9,7 +9,7 @@ class AuditLogEntity extends CommonEntity
{ {
public function __toString() public function __toString()
{ {
return "{$this->getPK()}|{$this->getTitle()}|{$this->attributes['type']}|{$this->attributes['status']}"; return "{$this->getPK()}|{$this->getTitle()}|{$this->attributes['status']}";
} }
public function getPK(): string public function getPK(): string
{ {
@ -24,8 +24,4 @@ class AuditLogEntity extends CommonEntity
$this->attributes[AuditLogModel::TITLE] = $title; $this->attributes[AuditLogModel::TITLE] = $title;
} }
//Common Function //Common Function
public function getParent(): string
{
return $this->attributes[AuditLogModel::PARENT];
}
} }