dbmsv4/app/Entities/MylogEntity.php
2025-12-19 10:03:03 +09:00

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
}