dbms/app/Entities/Customer/ServiceEntity.php
2025-05-26 17:59:58 +09:00

12 lines
199 B
PHP

<?php
namespace App\Entities\Customer;
use App\Models\Customer\ServiceModel;
class ServiceEntity extends CustomerEntity
{
const PK = ServiceModel::PK;
const TITLE = ServiceModel::TITLE;
}