servermgrv2/app/Entities/LoggerEntity.php
최준흠git config git config --helpgit config --global user.name 최준흠 ce698d7d75 servermgrv2 init...
2023-07-21 23:29:42 +09:00

22 lines
407 B
PHP

<?php
namespace App\Entities;
use App\Entities\BaseEntity;
class LoggerEntity extends BaseEntity
{
protected $datamap = [];
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
protected $casts = [];
public function getPrimaryKey()
{
return $this->attributes['uid'];
}
public function getTitle()
{
return $this->attributes['title'];
}
}