servermgrv2/app/Entities/CategoryEntity.php
최준흠git config git config --helpgit config --global user.name 최준흠 d2a11bc1ed servermgrv2 init...
2023-08-03 22:32:00 +09:00

39 lines
788 B
PHP

<?php
namespace App\Entities;
class CategoryEntity extends BaseHierarchyEntity
{
protected $datamap = [];
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
protected $casts = [];
//기본기능
public function getPrimaryKey()
{
return $this->attributes['uid'];
}
public function getTitle(): string
{
return $this->attributes['name'];
}
public function getStatus(): string
{
return $this->attributes['status'];
}
//추가기능
public function getLinkURL()
{
return $this->attributes['linkurl'];
}
public function getHead()
{
return $this->attributes['head'];
}
public function getTail()
{
return $this->attributes['tail'];
}
}