addClassPaths('SOFTWARE'); } public function getDTOClass(): string { return SOFTWAREDTO::class; } public function createDTO(array $formDatas): SOFTWAREDTO { return new SOFTWAREDTO($formDatas); } public function getEntityClass(): string { return SOFTWAREEntity::class; } public function getFormService(): SOFTWAREForm { if ($this->_form === null) { $this->_form = new SOFTWAREForm(); $this->_form->setAttributes([ 'pk_field' => $this->getPKField(), 'title_field' => $this->getTitleField(), 'table' => $this->model->getTable(), 'useAutoIncrement' => $this->model->useAutoIncrement(), 'class_path' => $this->getClassPaths(false) ]); } return $this->_form; } public function getHelper(): SOFTWAREHelper { if ($this->_helper === null) { $this->_helper = new SOFTWAREHelper(); $this->_helper->setAttributes([ 'pk_field' => $this->getPKField(), 'title_field' => $this->getTitleField(), 'table' => $this->model->getTable(), 'useAutoIncrement' => $this->model->useAutoIncrement(), 'class_path' => $this->getClassPaths(false) ]); } return $this->_helper; } //기본 기능부분 protected function getEntity_process(mixed $entity): SOFTWAREEntity { 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): SOFTWAREEntity { //IP정보에서 해당하는 IP가 있으면 가져와서 사용중인지 체크 후 수정 $entity = $this->getEntity($serverPartEntity->getPartUid()); if (!$entity instanceof SOFTWAREEntity) { throw new RuntimeException(static::class . '->' . __FUNCTION__ . "에서 {$serverPartEntity->getPartUid()}에 해당하는 SOFTWAREEntity정보를 찾을수없습니다."); } return $entity; } }