28 lines
518 B
PHP
Executable File
28 lines
518 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class PolicyTypeModel extends Model
|
|
{
|
|
protected $table = 'policy_type';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
"id",
|
|
"policy_type",
|
|
"bap",
|
|
"allocg",
|
|
"alloci",
|
|
"created_by",
|
|
"updated_by",
|
|
"is_active",
|
|
"long_name",
|
|
"ebp",
|
|
"etp",
|
|
"iep",
|
|
"itp",
|
|
"question_json",'itep','etep', 'policy_category',
|
|
];
|
|
}
|