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.
kwpayroll/app/Entities/PayrollType.php

22 lines
545 B
PHTML

<?php
namespace App\Entities;
use CodeIgniter\Entity\Entity;
class PayrollType extends Entity
{
protected $attributes = [
'paytype_id' => null,
'paytype_code' => null,
'paytype_name' => null,
'is_monthly' => null,
'is_semi_monthly' => null,
'is_daily' => null,
'is_hourly' => null,
];
protected $datamap = [];
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
protected $casts = [];
}