sigd/app/Models/ActivityGpc.php

14 lines
327 B
PHP

<?php
namespace App\Models;
class ActivityGpc extends SigdModel
{
protected $table = 'gpc';
protected $fillable = [
'id', 'inventory_year', 'activity_year', 'sector', 'gpc_code',
'gwp_co2', 'gwp_ch4', 'gwp_n2o', 'co2', 'ch4', 'n2o', 'co2eq',
'row_status', 'created_by', 'updated_by',
];
}