crm-summit/app/Models/ProductTempModel.php

13 lines
456 B
PHP
Raw Permalink Normal View History

2025-08-15 11:38:41 +07:00
<?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'];
}