nhance/app/Models/PolicyTypeModel.php

27 lines
460 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",
];
}