nhance/app/Models/PolicyTypeModel.php
2024-09-13 09:00:09 +05:30

23 lines
400 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",
];
}