You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
608 B
33 lines
608 B
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ParkingAlarmInformation extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'parking_alarm_information';
|
|
|
|
protected $fillable
|
|
= [
|
|
'name',
|
|
'type',
|
|
'notice_type',
|
|
'level',
|
|
'condition',
|
|
'content',
|
|
'remark',
|
|
'handler_user',
|
|
'handler_remark'
|
|
];
|
|
|
|
protected $hidden
|
|
= [
|
|
'created_at',
|
|
'updated_at'
|
|
];
|
|
|
|
}
|
|
|