shoppingmallv2/app/Entities/BoardEntity.php
최준흠git config git config --helpgit config --global user.name 최준흠 cd4398a4f8 shoppingmallv2 init..
2023-08-07 23:09:46 +09:00

43 lines
905 B
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 getBoardFile()
{
return $this->attributes['board_file'];
}
}