39 lines
717 B
PHP
Executable File
39 lines
717 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class ClientDepositModel extends Model
|
|
{
|
|
protected $table = 'cash_deposit';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
'id',
|
|
'client_id',
|
|
'insurer_id',
|
|
'transaction_type',
|
|
'amount',
|
|
'sub_type',
|
|
'is_active',
|
|
"created_by",
|
|
"updated_by",
|
|
"created_at",
|
|
"updated_at",
|
|
"description",
|
|
"balance",
|
|
"client_policy_id",
|
|
"cd_ac_no",
|
|
"endorsement_no",
|
|
"event_name",
|
|
"unit",
|
|
"cd_ac_pk",
|
|
"record_date",
|
|
"policy_transaction_id",
|
|
"file_id",
|
|
];
|
|
|
|
|
|
|
|
}
|