ria/app/Models/PowerConsumptionDetails.php
2025-03-05 11:08:01 +05:30

26 lines
497 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class PowerConsumptionDetails extends Model
{
protected $table = 't_powerconsumptiondetails';
protected $primaryKey = 'id';
protected $allowedFields = [
'date',
'machine_id',
'opening_units',
'closing_units',
'total_units'
];
protected $useTimestamps = true;
protected $createdField = 'created_at';
protected $updatedField = 'updated_at';
}