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

This commit is contained in:
yangsh
2026-02-05 10:36:12 +09:00
parent 8b77448128
commit 36355f75f3
12 changed files with 2939 additions and 1028 deletions

View File

@@ -1507,6 +1507,20 @@ class M702Model extends Model
];
}
public function chgTryCnt($vr_sq, $try_cnt)
{ //v2_vrfc_req try_cnt 값 변경.
$sql = "UPDATE v2_vrfc_req" .
" SET try_cnt = ?" .
" WHERE vr_sq = ?";
$data = array(
$try_cnt,
$vr_sq
);
$this->db->query($sql, $data);
}
// 변경이력 조회
public function getHistory($vr_sq)
{