2024-04-24 13:20:52 +07:00
|
|
|
<?php namespace App\Models;
|
|
|
|
|
|
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
|
|
|
|
|
|
class ProductsModel extends Model {
|
|
|
|
|
protected $table = 'products';
|
|
|
|
|
protected $primaryKey = 'productid';
|
2025-11-12 15:52:30 +07:00
|
|
|
protected $allowedFields = [ 'siteid', 'productnumber', 'productname', 'catalogid', 'accountid_productowner',
|
2024-04-24 13:20:52 +07:00
|
|
|
'installationdate', 'locationstartdate', 'locationenddate', 'warrantystartdate', 'warrantyenddate',
|
2025-09-01 22:42:12 +07:00
|
|
|
'productowner', 'productserviceid', 'statuspart', 'active',
|
2024-04-24 13:20:52 +07:00
|
|
|
'remotetool', 'remoteid', 'remotepwd', 'createdate', 'enddate' ];
|
|
|
|
|
}
|