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