dbms_primeidc_init...1

This commit is contained in:
최준흠 2025-04-03 17:48:09 +09:00
parent a6a34d47bb
commit ce6e979977
3 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ class AddDbService extends CommonService
{
return Entity::class;
}
public function getEntityByCode(string $key): Entity|null
public function getEntityByCode(string $key): Entity|null|false
{
$this->getModel()->where('addDB_code', $key);
return $this->getEntity();

View File

@ -27,7 +27,7 @@ class ClientService extends CommonService
{
return Entity::class;
}
public function getEntityByCode(string $key): Entity|null
public function getEntityByCode(string $key): Entity|null|false
{
$this->getModel()->where('Client_Code', $key);
return $this->getEntity();

View File

@ -27,7 +27,7 @@ class ServiceService extends CommonService
{
return Entity::class;
}
public function getEntityByCode(string $key): Entity|null
public function getEntityByCode(string $key): Entity|null|false
{
$this->getModel()->where('service_code', $key);
return $this->getEntity();