tstat_be/app/Models/ForexPerdiemModel.php

29 lines
595 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class ForexPerdiemModel extends Model
{
protected $table = 'c_forex_perdiem';
protected $primaryKey = 'forex_perdiem_id';
protected $useAutoIncrement = true;
protected $returnType = 'array';
protected $allowedFields = [
'country_code',
'country_name',
'currency',
'perdiem_amount',
'cash_percentage',
'card_percentage',
'is_active',
'created_on',
'created_by',
'updated_on',
'updated_by'
];
}