35 lines
645 B
PHP
35 lines
645 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Ippu1A extends SigdModel
|
|
{
|
|
protected $table = 'ippu_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');
|
|
}
|
|
}
|