상세수정
Some checks failed
Close Pull Request / main (pull_request_target) Has been cancelled

This commit is contained in:
yangsh
2026-02-04 10:48:51 +09:00
parent 107cc395d6
commit 2c96bd12de
10 changed files with 5052 additions and 1123 deletions

View File

@@ -17,4 +17,12 @@ class CommonModel extends Model
return $query->getResultArray();
}
public function getCompanyInfo($compSq)
{
$sql = "SELECT api_server, api_key, comp_nm FROM companies WHERE comp_sq = ?";
$data = [$compSq];
$query = $this->db->query($sql, $data);
return $query->getRowArray();
}
}