23 lines
435 B
PHP
23 lines
435 B
PHP
<?php
|
|
|
|
namespace App\Settings;
|
|
|
|
use Spatie\LaravelSettings\Settings;
|
|
|
|
class TimeSettings extends Settings
|
|
{
|
|
// 默认拉取时间
|
|
public ?string $global_time;
|
|
// 系统扫描时间
|
|
public ?string $node_exporter_time;
|
|
// 系统配置时间
|
|
public ?string $opcua_time;
|
|
// 数据存储时间
|
|
public ?string $prometheus_time;
|
|
|
|
public static function group(): string
|
|
{
|
|
return 'time';
|
|
}
|
|
}
|