mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
T5: TimerServiceBase.syncConfigToDatabase() - syncs task config to DB
T6: HostServiceBase - auto master election, stale node detection,
getMasterNode/setMasterNode methods
13 lines
183 B
PHP
13 lines
183 B
PHP
<?php
|
|
|
|
namespace app\admin\model;
|
|
|
|
use think\Model;
|
|
|
|
class SystemTimerConfig extends Model
|
|
{
|
|
protected $name = 'system_timer_config';
|
|
|
|
protected $autoWriteTimestamp = true;
|
|
}
|