vrfcReqModel 수정

This commit is contained in:
2026-01-23 18:16:50 +09:00
parent 3dc24d011a
commit 55e1cdf82a

View File

@@ -6,6 +6,43 @@ class VrfcReqModel extends Model {
// Model implementation here
protected $table = 'v2_vrfc_req';
protected $primaryKey = 'vr_sq';
protected $useAutoIncrement = true;
protected $returnType = 'array';
protected $allowedFields = [
'reqSeq',
'atcl_no',
'step',
'cpid',
'cp_atcl_id',
'trade_type',
'realtor_nm',
'realtor_tel_no',
'seller_tel_no',
'vrfc_type',
'rgbk_confirm',
'req_type',
'rdate',
'cpTelNo',
'stat_cd',
'try_cnt',
'insert_user',
'insert_tm',
'memo',
'contact_fail_cnt',
'sync_yn',
'reg_try_cnt',
'tel_fail_cause',
'rgbk_confirm_owner_nm',
'direct_trad_yn',
'confirm_doc_img_url',
'confirm_doc_owner_check_yn',
'owner_verifiable',
'vrfc_cmpl_type',
'rgbk_doc_img_url',
'certRegister',
'referenceFileUrl'
];
// 기본값 (명시 안 해도 됨)
protected $useAutoIncrement = true;