14 lines
325 B
PHP
14 lines
325 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Waste4D1a extends SigdModel
|
|
{
|
|
protected $table = 'waste_4d1a';
|
|
protected $fillable = [
|
|
'id', 'inventory_year', 'activity_year', 'category',
|
|
'population', 'ef_bod', 'ef_correction_factor', 'tow',
|
|
'row_num', 'row_status', 'created_by', 'updated_by',
|
|
];
|
|
}
|