dbmsv4/app/Entities/Equipment/ServerPartEntity.php
2025-12-18 18:34:22 +09:00

74 lines
1.8 KiB
PHP

<?php
namespace App\Entities\Equipment;
use App\Models\Equipment\ServerPartModel;
class ServerPartEntity extends EquipmentEntity
{
const PK = ServerPartModel::PK;
const TITLE = ServerPartModel::TITLE;
protected $attributes = [
'title' => '',
'type' => '',
'billing' => '',
'billing_at' => '',
'cnt' => 0,
'amount' => 0,
'extra' => '',
];
public function __construct(array|null $data = null)
{
parent::__construct($data);
}
final public function getClientInfoUid(): int|null
{
return $this->attributes['clientinfo_uid'] ?? null;
}
final public function getServiceInfoUid(): int|null
{
return $this->attributes['serviceinfo_uid'] ?? null;
}
final public function getServerInfoUid(): int|null
{
return $this->attributes['serverinfo_uid'] ?? null;
}
public function getPartUid(): int|null
{
return $this->attributes['part_uid'] ?? null;
}
//기본기능용
public function getCustomTitle(): string
{
return sprintf("%s*%d개[%s]", $this->getTitle(), $this->getCnt(), $this->getExtra());
}
public function getCalculatedAmount(): int
{
return $this->getAmount() * $this->getCnt();
}
public function getType(): string
{
return $this->attributes['type'];
}
public function getBilling(): string
{
return $this->attributes['billing'];
}
public function getBillingAt(): ?string
{
return $this->attributes['billing_at'];
}
public function getCnt(): int
{
return $this->attributes['cnt'];
}
public function getAmount(): int
{
return $this->attributes['amount'];
}
public function getExtra(): string|null
{
return $this->attributes['extra'];
}
}