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