28 lines
515 B
PHP
28 lines
515 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class InsecticidalLampReport extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $casts = [
|
|
'reported_at' => 'datetime',
|
|
];
|
|
|
|
protected $fillable = [
|
|
'device_id',
|
|
'agricultural_base_id',
|
|
'battery_vol',
|
|
'killed_num',
|
|
'air_temperature',
|
|
'air_humidity',
|
|
'charging_vol',
|
|
'high_vol',
|
|
'reported_at',
|
|
];
|
|
}
|