dbmsv2/app/Entities/Customer/ServiceHistoryEntity.php
2025-08-14 18:36:09 +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']);
}
}