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.
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Entities;
|
|
|
|
|
|
|
|
use CodeIgniter\Entity\Entity;
|
|
|
|
|
|
|
|
class EmployeePayrollInfo extends Entity
|
|
|
|
{
|
|
|
|
protected $attributes = [
|
|
|
|
'emppay_id' => null,
|
|
|
|
'employee_id' => null,
|
|
|
|
'paytype_id' => null,
|
|
|
|
'is_ATM' => null,
|
|
|
|
'savings_account' => null,
|
|
|
|
'work_days' => null,
|
|
|
|
'basic_sal_computation' => null,
|
|
|
|
'basic_monthly_pay' => null,
|
|
|
|
'basic_semi_monthly_pay' => null,
|
|
|
|
'basic_daily_pay' => null,
|
|
|
|
'basic_hourly_pay' => null,
|
|
|
|
'has_cola' => null,
|
|
|
|
'has_philhealth' => null,
|
|
|
|
'has_hdmf' => null,
|
|
|
|
'has_sss' => null,
|
|
|
|
'has_gsis' => null,
|
|
|
|
];
|
|
|
|
protected $datamap = [];
|
|
|
|
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
|
|
|
|
protected $casts = [];
|
|
|
|
}
|