36 lines
724 B
PHP
36 lines
724 B
PHP
<?php
|
|
|
|
namespace App\Services\Equipment\Link;
|
|
|
|
|
|
use App\Services\Equipment\EquipmentService;
|
|
use CodeIgniter\HTTP\IncomingRequest;
|
|
|
|
abstract class LinkService extends EquipmentService
|
|
{
|
|
protected function __construct(?IncomingRequest $request = null)
|
|
{
|
|
parent::__construct($request);
|
|
}
|
|
public function getClassName(): string
|
|
{
|
|
return parent::getClassName() . DIRECTORY_SEPARATOR . "Link";
|
|
}
|
|
|
|
public function getFields(): array
|
|
{
|
|
return [
|
|
"serverinfo_uid",
|
|
"cpuinfo_uid",
|
|
];
|
|
}
|
|
public function getFilterFields(): array
|
|
{
|
|
return [];
|
|
}
|
|
public function getBatchJobFields(): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|