24 lines
454 B
PHP
24 lines
454 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class PaymentModeModel extends Model
|
|
{
|
|
protected $table = 'partner_payment_mode_master';
|
|
protected $primaryKey = 'id';
|
|
protected $returnType = 'array';
|
|
|
|
protected $allowedFields = [
|
|
'value',
|
|
'is_active',
|
|
'created_by',
|
|
'created_on',
|
|
'updated_by',
|
|
'updated_on'
|
|
];
|
|
|
|
protected $useTimestamps = false;
|
|
}
|