crm-summit/app/Models/ProductTempModel.php
mikael-zakaria e79a923290 First Commit
2025-08-15 11:38:41 +07:00

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'];
}