37 lines
722 B
PHP
37 lines
722 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class MeteorologicalReport extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $casts = [
|
|
'reported_at' => 'datetime'
|
|
];
|
|
|
|
protected $fillable = [
|
|
'device_id',
|
|
'today_rainfall',
|
|
'yesterday_rainfall',
|
|
'accumulate_rainfall',
|
|
'moment_rainfall',
|
|
'pm10',
|
|
'pm25',
|
|
'box_illumination',
|
|
'box_pressure',
|
|
'box_co2',
|
|
'box_temperature',
|
|
'box_humidity',
|
|
'box_noise',
|
|
'wind_degree',
|
|
'wind_direction',
|
|
'wind_power',
|
|
'wind_speed',
|
|
'reported_at',
|
|
];
|
|
}
|