20 lines
369 B
PHP
20 lines
369 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class TpaApiSeviceModel extends Model
|
|
{
|
|
protected $table = 'tpa_api_services';
|
|
protected $primaryKey = 'id';
|
|
protected $protectFields = true;
|
|
protected $allowedFields = [
|
|
'id',
|
|
'tpa_id',
|
|
'api_name',
|
|
'description',
|
|
'is_active',
|
|
];
|
|
}
|