15 lines
362 B
PHP
15 lines
362 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Waste4D1e extends SigdModel
|
|
{
|
|
protected $table = 'waste_4d1e';
|
|
protected $fillable = [
|
|
'id', 'inventory_year', 'activity_year', 'category',
|
|
'n_effluent', 'ef', 'ef_conversion_factor', 'ef_ipal_emission',
|
|
'n2o_kg', 'n2o_gg',
|
|
'row_num', 'row_status', 'created_by', 'updated_by',
|
|
];
|
|
}
|