22 lines
433 B
PHP
22 lines
433 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 getServiceInfoUID()
|
|
{
|
|
return $this->attributes['serviceinfo_uid'];
|
|
}
|
|
|
|
public function getServerInfoUID()
|
|
{
|
|
return $this->attributes['serverinfo_uid'];
|
|
}
|
|
}
|