ria/app/Models/PowerConsumptionSummaryModel.php
2025-01-29 17:04:16 +05:30

31 lines
601 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class PowerConsumptionSummaryModel extends Model
{
protected $table = 't_powerconsumptionsummary';
protected $primaryKey = 'id';
protected $allowedFields = [
'date',
'machine_id',
'opening_reading',
'final_reading',
'total_reading',
'total_units',
'present_pf',
'average_pf',
'md',
'mf'
];
protected $useTimestamps = true;
protected $createdField = 'created_at';
protected $updatedField = 'updated_at';
}