31 lines
682 B
PHP
31 lines
682 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
use CodeIgniter\Model;
|
|
|
|
class QuotationModel extends Model
|
|
{
|
|
protected $table = 'partner_quotation';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
'enquiry_id',
|
|
'insured_declared_value',
|
|
'premium_amount',
|
|
'insurance_plan_type_id',
|
|
'insurer_id',
|
|
'insurer_branch_id',
|
|
'additional_uploaded_file_name',
|
|
'status',
|
|
'reject_reason',
|
|
'is_active',
|
|
'manager_id',
|
|
'created_by',
|
|
'updated_by',
|
|
'action_by',
|
|
'action_user',
|
|
'payment_mode_id',
|
|
'is_quick_quote'
|
|
];
|
|
protected $useTimestamps = false;
|
|
}
|