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