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 EmpPayTransIncomeDeduction extends Entity
|
|
|
|
{
|
|
|
|
protected $attributes = [
|
|
|
|
'emppaytransinded_id' => null,
|
|
|
|
'emppaytrans_id' => null,
|
|
|
|
'inded_id' => null,
|
|
|
|
'payslip_display' => null,
|
|
|
|
'inded_name' => null,
|
|
|
|
'coa_code' => null,
|
|
|
|
'is_income' => null,
|
|
|
|
'is_taxable' => null,
|
|
|
|
'include_in_gross' => null,
|
|
|
|
'is_fixed_amt' => null,
|
|
|
|
'is_percent_amt' => null,
|
|
|
|
'worked_days_based' => null,
|
|
|
|
'amount' => null,
|
|
|
|
'base_amount' => null,
|
|
|
|
'is_override' => null,
|
|
|
|
];
|
|
|
|
protected $datamap = [];
|
|
|
|
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
|
|
|
|
protected $casts = [];
|
|
|
|
}
|