diff --git a/app/Models/Entities/VrfcReqModel.php b/app/Models/Entities/VrfcReqModel.php index dee2ac0..0682739 100644 --- a/app/Models/Entities/VrfcReqModel.php +++ b/app/Models/Entities/VrfcReqModel.php @@ -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;