dbms/app/Entities/Customer/ServiceHistoryEntity.php
2025-06-19 15:53:46 +09:00

16 lines
341 B
PHP

<?php
namespace App\Entities\Customer;
use App\Models\Customer\ServiceHistoryModel;
class ServiceHistoryEntity extends CustomerEntity
{
const PK = ServiceHistoryModel::PK;
const TITLE = ServiceHistoryModel::TITLE;
public function getServiceUid(): int
{
return intval($this->attributes['serviceinfo_uid']);
}
}