Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
365 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TnmsneInfo extends Model
{
protected $table = 'tnmsneinfo';
public $timestamps = false;
2020-09-18 08:12:07 -05:00
protected $fillable = [
'device_id',
'neID',
'neType',
'neName',
'neLocation',
'neAlarm',
'neOpMode',
'neOpState',
];
}