32 lines
677 B
PHP
32 lines
677 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class EndorsementModel extends Model
|
|
{
|
|
protected $table = 'endorsement';
|
|
protected $primaryKey = 'id';
|
|
protected $useAutoIncrement = true;
|
|
protected $returnType = 'array';
|
|
protected $useSoftDeletes = false;
|
|
protected $protectFields = true;
|
|
protected $allowedFields = [
|
|
'id',
|
|
'client_id',
|
|
'client_policy_id',
|
|
'insurer_id',
|
|
'tpa_id',
|
|
'endorsement_no',
|
|
'endorsement_type',
|
|
'created_by',
|
|
'created_at',
|
|
'updated_by',
|
|
'updated_at',
|
|
'file_id',
|
|
'is_active'
|
|
];
|
|
|
|
}
|