19 lines
356 B
PHP
19 lines
356 B
PHP
<?php
|
|
|
|
namespace Modules\Maintenance\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class IotPredictiveRule extends Model
|
|
{
|
|
protected $table = 'mt_iot_predictive_rules';
|
|
|
|
protected $guarded = ['id'];
|
|
|
|
protected $casts = [
|
|
'threshold' => 'decimal:6',
|
|
'auto_work_order' => 'boolean',
|
|
'is_active' => 'boolean',
|
|
];
|
|
}
|