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

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'];
}
}