servermgrv2/app/Entities/BoardEntity.php
최준흠git config git config --helpgit config --global user.name 최준흠 927eaee82a servermgrv2 init...
2023-07-20 20:31:20 +09:00

30 lines
589 B
PHP

<?php
namespace App\Entities;
use App\Entities\CommonEntity;
class BoardEntity extends CommonEntity
{
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 getPassword()
{
return $this->attributes['passwd'];
}
public function getViews()
{
return $this->attributes['view_cnt'];
}
}