31 lines
601 B
PHP
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';
|
|
|
|
|
|
}
|