mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42: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
32 lines
697 B
PHP
32 lines
697 B
PHP
<?php
|
|
|
|
namespace app\admin\model;
|
|
|
|
use app\common\model\TimeModel;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $task_name 任务名称
|
|
* @property string $node_id 执行节点ID
|
|
* @property string $run_type 运行类型
|
|
* @property int $start_time 开始时间戳
|
|
* @property int $end_time 结束时间戳
|
|
* @property int $duration 耗时
|
|
* @property string $status 状态:running/success/error
|
|
* @property string $error_message 错误信息
|
|
* @property int $concurrency_id 并发分片ID
|
|
* @property int $create_time 创建时间
|
|
*/
|
|
class SystemTimerLog extends TimeModel
|
|
{
|
|
|
|
protected $name = "system_timer_log";
|
|
|
|
protected $deleteTime = false;
|
|
|
|
|
|
|
|
|
|
|
|
}
|