17 lines
270 B
PHP
17 lines
270 B
PHP
<?php
|
|
|
|
namespace App\Entities\Device;
|
|
|
|
use App\Models\Device\PartModel;
|
|
|
|
class PartEntity extends DeviceEntity
|
|
{
|
|
const PK = PartModel::PK;
|
|
const TITLE = PartModel::TITLE;
|
|
|
|
public function getAmount()
|
|
{
|
|
return $this->attributes['amount'];
|
|
}
|
|
}
|