From 2f5b1a7da67c7945c09641fa3643688af5869fb8 Mon Sep 17 00:00:00 2001 From: jjstyle Date: Fri, 23 Jan 2026 21:40:56 +0900 Subject: [PATCH] =?UTF-8?q?vrfcReqModel=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Models/Entities/V2articleinfoModel.php | 2 +- app/Models/Entities/V2articleinfoetcModel.php | 2 +- app/Services/NaverService.php | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/Models/Entities/V2articleinfoModel.php b/app/Models/Entities/V2articleinfoModel.php index 8c1c8d4..4cd451a 100644 --- a/app/Models/Entities/V2articleinfoModel.php +++ b/app/Models/Entities/V2articleinfoModel.php @@ -4,7 +4,7 @@ namespace App\Models\Entities; use CodeIgniter\Model; -class V2articleInfoModel extends Model +class V2articleinfoModel extends Model { protected $table = 'v2_article_info'; protected $primaryKey = 'vr_sq'; diff --git a/app/Models/Entities/V2articleinfoetcModel.php b/app/Models/Entities/V2articleinfoetcModel.php index 4a4a0f7..298b2c3 100644 --- a/app/Models/Entities/V2articleinfoetcModel.php +++ b/app/Models/Entities/V2articleinfoetcModel.php @@ -4,7 +4,7 @@ namespace App\Models\Entities; use CodeIgniter\Model; -class V2articleInfoEtcModel extends Model +class V2articleinfoetcModel extends Model { protected $table = 'v2_article_info_etc'; protected $primaryKey = 'vr_sq'; diff --git a/app/Services/NaverService.php b/app/Services/NaverService.php index 7d93c44..0f172ed 100644 --- a/app/Services/NaverService.php +++ b/app/Services/NaverService.php @@ -5,8 +5,8 @@ namespace App\Services; use CodeIgniter\CLI\CLI; use App\Libraries\NaverApiClient; use App\Models\Entities\VrfcReqModel; -use App\Models\Entities\V2articleInfoModel; -use App\Models\Entities\V2articleInfoetcModel; +use App\Models\Entities\V2articleinfoModel; +use App\Models\Entities\V2articleinfoetcModel; use App\Models\Entities\V2stdailyModel; use App\Models\Entities\NaverRawStagingModel; use App\Models\Entities\ReceiptModel; @@ -290,12 +290,12 @@ class NaverService $vr_sq = $this->insertVrfcReq($vrfcParam); $articleInfoParam['vr_sq'] = $vr_sq; write_custom_log("articleInfoParam :: " . json_encode($articleInfoParam, JSON_UNESCAPED_UNICODE) , "INFO", "SERVICE"); - if (!$this->getModel('articleModel', V2articleInfoModel::class)->insert($articleInfoParam)) { + if (!$this->getModel('articleModel', V2articleinfoModel::class)->insert($articleInfoParam)) { throw new \Exception("ArticleInfo Insert 실패: " . json_encode($this->db->error())); } $articleInfoEtcParam['vr_sq'] = $vr_sq; - if (!$this->getModel('articleEtcModel', V2articleInfoetcModel::class)->insert($articleInfoEtcParam)) { + if (!$this->getModel('articleEtcModel', V2articleinfoetcModel::class)->insert($articleInfoEtcParam)) { throw new \Exception("ArticleInfoEtc Insert 실패"); }