cfmgrv3/app/Entities/CommonEntity.php
2023-06-21 09:25:38 +09:00

14 lines
176 B
PHP

<?php
namespace App\Entities;
use CodeIgniter\Entity\Entity;
class CommonEntity extends Entity
{
public function getTitle()
{
return "CommonEntity";
}
}