26 lines
480 B
PHP
26 lines
480 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class BatchFileModel extends Model
|
|
{
|
|
protected $table = 'batch_files';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
'id',
|
|
'client_id',
|
|
'client_policy_id',
|
|
'batch_code',
|
|
'file_name',
|
|
'insurer_or_tpa',
|
|
'event_type',
|
|
'actions',
|
|
'count',
|
|
"created_by",
|
|
"updated_by",
|
|
"is_active",
|
|
];
|
|
}
|