servermgrv2/app/Entities/BoardEntity.php
최준흠git config git config --helpgit config --global user.name 최준흠 7add84d1f1 servermgrv2 init...
2023-08-06 22:40:31 +09:00

51 lines
1.1 KiB
PHP

<?php
namespace App\Entities;
class BoardEntity 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['title'];
}
public function getStatus(): string
{
return $this->attributes['status'];
}
//추가기능
public function getCategory_Uid()
{
return $this->attributes['category_uid'];
}
public function getUser_Uid()
{
return $this->attributes['user_uid'];
}
public function getPassword()
{
return $this->attributes['passwd'];
}
public function getViews()
{
return $this->attributes['view_cnt'];
}
public function getBoardFile()
{
return $this->attributes['board_file'];
}
public function getBoardFileName()
{
return explode(DEFAULTS['DELIMITER_FILE'], $this->getBoardFile())[1];
}
}