forked from mahdahar/crm-summit
12 lines
472 B
PHP
12 lines
472 B
PHP
|
|
<?php namespace App\Models;
|
||
|
|
|
||
|
|
use CodeIgniter\Model;
|
||
|
|
|
||
|
|
class ProductsModel extends Model {
|
||
|
|
protected $table = 'products';
|
||
|
|
protected $primaryKey = 'productid';
|
||
|
|
protected $allowedFields = [ 'siteid', 'productnumber', 'productname', 'catalogid',
|
||
|
|
'installationdate', 'locationstartdate', 'locationenddate', 'warrantystartdate', 'warrantyenddate',
|
||
|
|
'productowner', 'productserviceid', 'statuspart',
|
||
|
|
'remotetool', 'remoteid', 'remotepwd', 'createdate', 'enddate' ];
|
||
|
|
}
|