홍보확인서 추가

This commit is contained in:
yangsh
2026-01-06 17:53:05 +09:00
parent de9b295e1c
commit 1c44058286
16 changed files with 10407 additions and 151 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace App\Models\v2;
use CodeIgniter\Model;
class M710Model extends Model
{
public function insert_v2_stop_api_save_info($atcl_no, $vr_sq, $type, $fax_sq)
{
$sql = "INSERT INTO v2_stop_api_save_info(atcl_no,vr_sq,type,status,stop_dt,fax_sq)" .
" VALUE(?,?,?,'stop',now(),?)";
$date = [
$atcl_no,
$vr_sq,
$type,
$fax_sq
];
$this->db->query($sql, $date);
}
}