dbms/app/Entities/Customer/ServicePartEntity.php
2025-05-20 17:14:59 +09:00

22 lines
414 B
PHP

<?php
namespace App\Entities\Customer;
use App\Models\Customer\ServicePartModel;
class ServicePartEntity extends CustomerEntity
{
const PK = ServicePartModel::PK;
const TITLE = ServicePartModel::TITLE;
public function getServiceInfo()
{
return $this->attributes['erviceinfo_uid'];
}
public function getPartInfo()
{
return $this->attributes['partinfo_uid'];
}
}