dbmsv2/app/Entities/Equipment/ServerPartEntity.php
2025-08-27 11:14:41 +09:00

59 lines
1.4 KiB
PHP

<?php
namespace App\Entities\Equipment;
use App\Models\Equipment\ServerPartModel;
class ServerPartEntity extends EquipmentEntity
{
const PK = ServerPartModel::PK;
const TITLE = ServerPartModel::TITLE;
const DEFAULT_BILLING = PAYMENT['BILLING']['MONTH'];
public function setPartEntity(PartEntity $entity): void
{
$this->attributes['part'] = $entity;
}
public function getTitle(): string
{
return $this->getPartEntity()->getTitle();
}
public function getPrice(): string
{
return $this->getPartEntity()->getPrice();
}
//기본기능용
public function getPartEntity(): PartEntity
{
return $this->attributes['part'] ?? [];
}
public function getPartInfoUID(): int
{
return $this->attributes['partinfo_uid'];
}
public function getServerInfoUID(): int
{
return $this->attributes['serverinfo_uid'];
}
public function getServiceInfoUID(): int|null
{
return $this->attributes['serviceinfo_uid'] ?? null;
}
public function getBilling(): string
{
return $this->attributes['billing'];
}
public function getAmount(): int
{
return $this->attributes['amount'];
}
public function getCnt(): int
{
return $this->attributes['cnt'];
}
public function getExtra(): string|null
{
return $this->attributes['extra'] ?? null;
}
}