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

24 lines
475 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class InsurerExcelExportTemplateModel extends Model
{
protected $table = 'insurer_excel_export_template';
protected $primaryKey = 'id';
protected $allowedFields = [
"id",
"insurer_id",
"policy_type_id",
"event_name",
"type_name",
"jsoncolumns",
"created_by",
"updated_by",
"updated_at",
"is_active",
];
}