31 lines
561 B
PHP
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"
|
|
];
|
|
|
|
}
|