23 lines
551 B
PHP
23 lines
551 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Energy1A extends SigdModel
|
|
{
|
|
protected $table = 'energy_1a';
|
|
|
|
protected $fillable = [
|
|
'id','inventory_year', 'activity_year', 'activity_code', 'category',
|
|
'value', 'ef_cf', 'consumption_tj',
|
|
'ef_co2', 'emission_co2',
|
|
'ef_ch4', 'emission_ch4',
|
|
'ef_n2o', 'emission_n2o',
|
|
'row_num', 'row_status', 'created_by', 'updated_by',
|
|
];
|
|
|
|
public function activity()
|
|
{
|
|
return $this->belongsTo(ReferenceActivity::class, 'activity_code', 'code');
|
|
}
|
|
}
|