21 lines
351 B
PHP
Executable File
21 lines
351 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class BatchListModel extends Model
|
|
{
|
|
protected $table = 'batch_list';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
'id',
|
|
'emp_policy_id',
|
|
'batch_code',
|
|
"created_by",
|
|
"updated_by",
|
|
"is_active",
|
|
];
|
|
|
|
}
|