getClassName(); } public function getModelClass(): string { return Model::class; } public function getEntityClass(): string { return Entity::class; } public function getEntitysByCode(string $value): array { //AddDBService에서 해당코드의(닷디펜더,딥파인더 등) Service_Code를 가져와서 배열에 저장 $this->getModel()->select('DISTINCT(service_code) AS service_code'); $this->getModel()->where('AddDB_code', $value); return $this->getEntitys(); } }