nhance/app/Models/EmpEndorsementModel.php
2024-03-26 15:10:11 +05:30

31 lines
561 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class EmpEndorsementModel extends Model
{
protected $table = 'emp_endorsement';
protected $primaryKey = 'id';
protected $allowedFields = [
'id',
'pk',
'endorsement_id',
'emp_code',
'table_name',
'actions',
'name',
'field_name',
'old_value',
'new_value',
'date_of_correction',
'status',
"created_by",
"updated_by",
"is_active",
"remarks"
];
}