dbms/app/Entities/Customer/ServiceServerEntity.php
2025-05-20 18:50:49 +09:00

22 lines
427 B
PHP

<?php
namespace App\Entities\Customer;
use App\Models\Customer\ServiceServerModel;
class ServiceServerEntity extends CustomerEntity
{
const PK = ServiceServerModel::PK;
const TITLE = ServiceServerModel::TITLE;
public function getServiceInfo()
{
return $this->attributes['serviceinfo_uid'];
}
public function getServerInfo()
{
return $this->attributes['serverinfo_uid'];
}
}