title = lang("{$this->getService()->getClassPath()}.title"); $this->helper = new AuditLogHelper(); } protected function getService(): AuditLogService { if ($this->service === null) { $this->service = new AuditLogService(); $this->class_name = $this->service->getClassName(); $this->class_path = $this->service->getClassPath(); } return $this->service; } // 리스트 protected function index_entitys_process(): array { //기본Soring처리 $this->getService()->getModel()->orderBy("created_at DESC,zone_name ASC"); return parent::index_entitys_process(); } }