23 lines
424 B
PHP
23 lines
424 B
PHP
<?php
|
|
|
|
namespace App\Entities;
|
|
|
|
use App\Models\MylogModel as Model;
|
|
|
|
class MylogEntity extends CommonEntity
|
|
{
|
|
const PK = Model::PK;
|
|
const TITLE = Model::TITLE;
|
|
protected $attributes = [
|
|
'title' => '',
|
|
'status' => '',
|
|
'content' => ''
|
|
];
|
|
public function __construct(array|null $data = null)
|
|
{
|
|
parent::__construct($data);
|
|
}
|
|
//공통부분
|
|
//Common Function
|
|
}
|