nhance/app/Models/PolicyPremium2Model.php

30 lines
508 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class PolicyPremium2Model extends Model
{
protected $table = 'policy_premium_2';
protected $primaryKey = 'id';
protected $allowedFields = [
'id',
'client_id',
'client_policy_id',
'policy_grid_id',
'age_from',
'age_to',
'si',
'premium',
'max_si',
'grade',
"created_by",
"updated_by",
'is_active',
];
}