dbms/app/Models/Customer/CustomerModel.php
2025-05-06 10:26:18 +09:00

14 lines
201 B
PHP

<?php
namespace App\Models\Customer;
use App\Models\CommonModel;
abstract class CustomerModel extends CommonModel
{
protected function __construct()
{
parent::__construct();
}
}