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.
21 lines
453 B
PHP
21 lines
453 B
PHP
<?php
|
|
|
|
namespace App\Entities;
|
|
|
|
use CodeIgniter\Entity\Entity;
|
|
|
|
class CompanyBranch extends Entity
|
|
{
|
|
protected $attributes = [
|
|
'branch_code' => null,
|
|
'company_id' => null,
|
|
'branch_name' => null,
|
|
'address' => null,
|
|
'contact_number' => null,
|
|
'email_address' => null,
|
|
];
|
|
protected $datamap = [];
|
|
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
|
|
protected $casts = [];
|
|
}
|