22 lines
412 B
PHP
22 lines
412 B
PHP
<?php
|
|
|
|
namespace App\Entities\Equipment;
|
|
|
|
use App\Models\Equipment\ServerPartModel;
|
|
|
|
class ServerPartEntity extends EquipmentEntity
|
|
{
|
|
const PK = ServerPartModel::PK;
|
|
const TITLE = ServerPartModel::TITLE;
|
|
|
|
public function getServerInfo()
|
|
{
|
|
return $this->attributes['serverinfo_uid'];
|
|
}
|
|
|
|
public function getPartInfo()
|
|
{
|
|
return $this->attributes['partinfo_uid'];
|
|
}
|
|
}
|