dbms/app/Entities/Customer/ServicePartEntity.php
2025-05-16 18:57:21 +09:00

12 lines
215 B
PHP

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