16 lines
298 B
PHP
16 lines
298 B
PHP
<?php
|
|
|
|
namespace App\Entities\Equipment\Link;
|
|
|
|
use App\Models\Equipment\Link\IpModel;
|
|
|
|
class IpEntity extends LinkEntity
|
|
{
|
|
const PK = IpModel::PK;
|
|
const TITLE = IpModel::TITLE;
|
|
public function getAdapterInfoUID(): string
|
|
{
|
|
return $this->attributes['ipinfo_uid'];
|
|
}
|
|
}
|