18 lines
446 B
PHP
18 lines
446 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class MotorMasterSubProductModel extends Model
|
|
{
|
|
protected $table = 'motor_master_sub_product';
|
|
protected $primaryKey = 'id';
|
|
protected $returnType = 'array';
|
|
protected $protectFields = true;
|
|
protected $allowedFields = [
|
|
'business_type', 'product_label', 'sub_product_code', 'is_active', 'imported_at',
|
|
];
|
|
protected $useTimestamps = false;
|
|
}
|