User 介面 只能看資料不能做修改 Role 介面移除 Branch介面 只能看資料不能做修改 Room 介面 可操控 包廂開關台 Sqgger API 可操控API Room 有操控異動記錄 machine_statuses 需做資料留存需留7 天 20250528
32 lines
873 B
PHP
32 lines
873 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* @OA\Schema(
|
|
* schema="MachineStatus",
|
|
* type="object",
|
|
* @OA\Property(property="branch_name", type="string", example="測試"),
|
|
* @OA\Property(property="hostname", type="string", example="PC101"),
|
|
* @OA\Property(property="ip", type="string", example="192.168.XX.XX"),
|
|
* @OA\Property(property="cpu", type="numeric", example="0.00"),
|
|
* @OA\Property(property="memory", type="numeric", example="25603"),
|
|
* @OA\Property(property="disk", type="numeric", example="158266.49"),
|
|
* @OA\Property(property="status", type="string", example="online,error"),
|
|
* )
|
|
*/
|
|
class MachineStatus extends Model
|
|
{
|
|
protected $fillable = [
|
|
'branch_name',
|
|
'hostname',
|
|
'ip',
|
|
'cpu',
|
|
'memory',
|
|
'disk',
|
|
'status',
|
|
];
|
|
}
|