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

This commit is contained in:
yangsh
2026-02-04 13:32:52 +09:00
parent 2c96bd12de
commit 99ea553d9a
7 changed files with 3030 additions and 994 deletions

View File

@@ -510,6 +510,24 @@ class M415Model extends Model
return $res;
}
// 등기부등본 확인완료 시간
public function get_cert_confTimeForHistory($vr_sq)
{
$sql = "select insert_tm from v2_chg_history" .
" where vr_sq = ?" .
" and stat_cd = '45'" .
" and chg_type= 'C9'" .
" order by seq desc" .
" limit 1";
$data = array(
$vr_sq
);
$query = $this->db->query($sql, $data);
$res = $query->getRowArray();
return $res;
}
// 검증실패 시간
public function get_69_ForHistory($vr_sq)
{