14 lines
376 B
PHP
14 lines
376 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Agriculture3C5 extends SigdModel
|
|
{
|
|
protected $table = 'agriculture_3c5';
|
|
protected $fillable = [
|
|
'id', 'inventory_year', 'activity_year', 'activity_code', 'category', 'activity',
|
|
'f_sn', 'frac_gasf', 'f_on', 'f_prp', 'frac_gasm', 'ef4', 'n2o_n',
|
|
'row_num', 'row_status', 'created_by', 'updated_by',
|
|
];
|
|
}
|