13 lines
456 B
PHP
13 lines
456 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class ProductTempModel extends Model
|
|
{
|
|
protected $table = 'producttemp';
|
|
protected $primaryKey = 'productid';
|
|
protected $allowedFields = ['productnumber','productname','catalognumber','siteid','locationstartdate','locationenddate','installationdate','warrantystartdate','warrantyenddate','active','owner','statusservice','statusparts','userid','reference','logdate'];
|
|
}
|