dbmsv4/app/Services/Part/RAMService.php
2026-01-06 13:09:07 +09:00

61 lines
1.8 KiB
PHP

<?php
namespace App\Services\Part;
use RuntimeException;
use App\Models\Part\RAMModel;
use App\Helpers\Part\RAMHelper;
use App\Forms\Part\RAMForm;
use App\Entities\Part\RAMEntity;
use App\Entities\Equipment\ServerPartEntity;
use App\DTOs\Part\RAMDTO;
class RAMService extends PartType1Service
{
protected string $formClass = RAMForm::class;
protected string $helperClass = RAMHelper::class;
public function __construct(RAMModel $model)
{
parent::__construct($model);
$this->addClassPaths('RAM');
}
public function getDTOClass(): string
{
return RAMDTO::class;
}
public function createDTO(array $formDatas): RAMDTO
{
return new RAMDTO($formDatas);
}
public function getEntityClass(): string
{
return RAMEntity::class;
}
//기본 기능부분
protected function getEntity_process(mixed $entity): RAMEntity
{
return $entity;
}
//List 검색용
//FormFilter 조건절 처리
//검색어조건절처리
//OrderBy 처리
public function setOrderBy(mixed $field = null, mixed $value = null): void
{
$this->model->orderBy('title ASC');
parent::setOrderBy($field, $value);
}
//서버파트관련 작업
//파트정보가져오기
public function getPartEntityByServerPart(ServerPartEntity $serverPartEntity): RAMEntity
{
//IP정보에서 해당하는 IP가 있으면 가져와서 사용중인지 체크 후 수정
$entity = $this->getEntity($serverPartEntity->getPartUid());
if (!$entity instanceof RAMEntity) {
throw new RuntimeException(static::class . '->' . __FUNCTION__ . "에서 {$serverPartEntity->getPartUid()}에 해당하는 RAMEntity정보를 찾을수없습니다.");
}
return $entity;
}
}