25 lines
467 B
PHP
25 lines
467 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class CostCenterModel extends Model
|
|
{
|
|
protected $table = 'm_cost_center';
|
|
protected $primaryKey = 'cost_center_id';
|
|
|
|
protected $allowedFields = [
|
|
'name',
|
|
'description',
|
|
'created_on',
|
|
'created_by',
|
|
'updated_on',
|
|
'updated_by',
|
|
'is_active'
|
|
];
|
|
|
|
protected $useTimestamps = false;
|
|
protected $returnType = 'array';
|
|
}
|