2021-10-02 01:58:26 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
class HrSystem extends DeviceRelatedModel
|
|
|
|
|
{
|
|
|
|
|
public $timestamps = false;
|
|
|
|
|
protected $table = 'hrSystem';
|
2021-10-03 01:03:24 +02:00
|
|
|
protected $fillable = ['device_id', 'hrSystemNumUsers', 'hrSystemProcesses', 'hrSystemMaxProcesses'];
|
2021-10-02 01:58:26 +02:00
|
|
|
|
|
|
|
|
protected $primaryKey = 'hrSystem_id';
|
|
|
|
|
}
|