23 lines
412 B
PHP
Executable File
23 lines
412 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class SIMappingModel extends Model
|
|
{
|
|
protected $table = 'si_mapping';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
"id",
|
|
"policy_id",
|
|
'base_policy_id',
|
|
'policy_si_amounts',
|
|
'base_policy_si_amount',
|
|
'created_by',
|
|
'updated_by',
|
|
'is_active'
|
|
];
|
|
|
|
}
|