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

31 lines
676 B
PHP

<?php
namespace App\Entities\Part;
use App\Models\Part\CPUModel;
class CPUEntity extends PartEntity
{
const PK = CPUModel::PK;
const TITLE = CPUModel::TITLE;
public function __construct(array|null $data = null)
{
$this->attributes['used'] = 0;
$this->attributes['stock'] = 0;
parent::__construct($data);
}
//기본기능
public function getStock(): int
{
return $this->attributes['stock'] ?? 0;
}
public function getUsed(): int
{
return $this->attributes['used'] ?? 0;
}
public function getAvailable(): int
{
return $this->getStock() - $this->getUsed();
}
}