41 lines
802 B
PHP
41 lines
802 B
PHP
<?php
|
|
|
|
namespace App\Entities;
|
|
|
|
use App\Entities\BaseEntity;
|
|
|
|
class BoardEntity 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'];
|
|
}
|
|
public function getStatus()
|
|
{
|
|
return $this->attributes['status'];
|
|
}
|
|
|
|
//추가기능
|
|
public function getPassword()
|
|
{
|
|
return $this->attributes['passwd'];
|
|
}
|
|
public function getFile()
|
|
{
|
|
return $this->attributes['board_file'];
|
|
}
|
|
public function getViews()
|
|
{
|
|
return $this->attributes['view_cnt'];
|
|
}
|
|
}
|