51 lines
1.1 KiB
PHP
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];
|
|
}
|
|
}
|