sigd/app/Models/EnergyGpcI51.php

21 lines
550 B
PHP

<?php
namespace App\Models;
class EnergyGpcI51 extends SigdModel
{
protected $table = 'energy_gpc_i_5_1';
protected $fillable = [
'id', 'inventory_year', 'activity_year', 'activity_code',
'value', 'ef_cf', 'consumption_tj', 'ef_co2', 'ef_ch4', 'ef_n2o',
'co2_ton', 'ch4_ton', 'n2o_ton', 'co2_gg', 'ch4_gg', 'n2o_gg',
'row_num', 'row_status', 'created_by', 'updated_by',
];
public function activity()
{
return $this->belongsTo(ReferenceActivity::class, 'activity_code', 'code');
}
}