mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
T10: TimerConfig CURD - task management with run_type/status editing,
manual trigger button, task_name read-only, no add/delete
T11: TimerLog CURD - read-only log viewer with filters and color badges
T12: Host list enhanced - is_master column, setMaster button
38 lines
1.2 KiB
PHP
38 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace app\admin\model;
|
|
|
|
use app\common\model\TimeModel;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $task_name 任务名称
|
|
* @property string $run_type 运行类型:main/auto/all/manual main:main,auto:auto,all:all,manual:manual
|
|
* @property int $status 状态:0=停用,1=启用 0:停用,1:启用
|
|
* @property int $is_synced 是否已同步:0=未同步,1=已同步 0:未同步,1:已同步
|
|
* @property string $last_execute_node 最后执行节点ID
|
|
* @property int $last_execute_time 最后执行时间戳
|
|
* @property int $manual_trigger 手动触发标记:0=未触发,1=已触发 0:未触发,1:已触发
|
|
* @property int $create_time 创建时间
|
|
*/
|
|
class SystemTimerConfig extends TimeModel
|
|
{
|
|
|
|
protected $name = "system_timer_config";
|
|
|
|
protected $deleteTime = false;
|
|
|
|
|
|
public const SELECT_LIST_RUN_TYPE = ['main' => 'main', 'auto' => 'auto', 'all' => 'all', 'manual' => 'manual'];
|
|
|
|
public const SELECT_LIST_STATUS = ['0' => '停用', '1' => '启用'];
|
|
|
|
public const SELECT_LIST_IS_SYNCED = ['0' => '未同步', '1' => '已同步'];
|
|
|
|
public const SELECT_LIST_MANUAL_TRIGGER = ['0' => '未触发', '1' => '已触发'];
|
|
|
|
|
|
|
|
|
|
}
|