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.

25 lines
623 B
PHTML

<?php
namespace App\Entities;
use CodeIgniter\Entity\Entity;
class RawAttLog extends Entity
{
protected $attributes = [
'company_issue_id' => null,
'log_date' => null,
'log_time' => null,
'ucol1' => null,
'log_type' => null,
'ucol2' => null,
'ucol3' => null,
'branch_code' => null,
'att_from' => null,
'att_to' => null,
];
protected $datamap = [];
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
protected $casts = [];
}