dbms/app/Entities/Customer/ServiceEntity.php
2025-05-13 19:12:02 +09:00

17 lines
288 B
PHP

<?php
namespace App\Entities\Customer;
use App\Models\Customer\ServiceModel;
class ServiceEntity extends CustomerEntity
{
const PK = ServiceModel::PK;
const TITLE = ServiceModel::TITLE;
public function getAmount()
{
return $this->attributes['amount'];
}
}