14 lines
322 B
PHP
14 lines
322 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Waste4C2c extends SigdModel
|
|
{
|
|
protected $table = 'waste_4c2c';
|
|
protected $fillable = [
|
|
'id', 'inventory_year', 'activity_year', 'category',
|
|
'open_burned', 'ef_msw', 'ef_nitrous_oxide', 'n2o',
|
|
'row_num', 'row_status', 'created_by', 'updated_by',
|
|
];
|
|
}
|