dbms_init...1

This commit is contained in:
choi.jh 2025-06-25 15:03:06 +09:00
parent 22842d79dd
commit c8f48e6443
2 changed files with 3 additions and 3 deletions

View File

@ -684,6 +684,9 @@ abstract class CommonController extends BaseController
// 현재 URL을 스택에 저장 // 현재 URL을 스택에 저장
helper(['form']); helper(['form']);
$this->entities = $this->index_process(); $this->entities = $this->index_process();
if (env('app.debug.index')) {
echo $this->getService()->getModel()->getLastQuery() . "<BR>";
}
return $this->getResultSuccess(); return $this->getResultSuccess();
} catch (\Exception $e) { } catch (\Exception $e) {
return $e->getMessage(); return $e->getMessage();

View File

@ -87,9 +87,6 @@ abstract class CommonService
foreach ($this->findAllDatas($columns) as $entity) { foreach ($this->findAllDatas($columns) as $entity) {
$entities[$entity->getPK()] = $entity; $entities[$entity->getPK()] = $entity;
} }
if (env('app.debug.index')) {
echo $this->getModel()->getLastQuery() . "<BR>";
}
return $entities; return $entities;
} // } //
//기본 기능부분 //기본 기능부분