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.
17 lines
334 B
PHTML
17 lines
334 B
PHTML
8 months ago
|
<?php
|
||
|
|
||
|
namespace App\Entities;
|
||
|
|
||
|
use CodeIgniter\Entity\Entity;
|
||
|
|
||
|
class EmploymentStatus extends Entity
|
||
|
{
|
||
|
protected $attributes = [
|
||
|
'emp_status_id' => null,
|
||
|
'status_name' => null,
|
||
|
];
|
||
|
protected $datamap = [];
|
||
|
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
|
||
|
protected $casts = [];
|
||
|
}
|