You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
698 B
PHTML

8 months ago
<?php
namespace App\Entities;
use CodeIgniter\Entity\Entity;
class Employee extends Entity
{
protected $attributes = [
'employee_id' => null,
'company_id' => null,
'branch_code' => null,
'dept_id' => null,
'job_title_id' => null,
'emp_status_id' => null,
'pay_group_id' => null,
8 months ago
'company_issued_id' => null,
'last_name' => null,
'first_name' => null,
'middle_name' => null,
'suffix' => null,
'email_address' => null,
'contact_number' => null,
];
protected $datamap = [];
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
protected $casts = [];
}