mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-28 17:30:16 +00:00
40 lines
857 B
PHP
40 lines
857 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
'key' => 'order_close',
|
|
'name' => '未支付订单自动关闭',
|
|
'desc' => '',
|
|
'time' => [
|
|
'type' => 'min',
|
|
'min' => 1
|
|
],
|
|
'class' => '',
|
|
'function' => ''
|
|
],
|
|
[
|
|
'key' => 'site_expire_close',
|
|
'name' => '站点到期自动关闭',
|
|
'desc' => '',
|
|
'time' => [
|
|
'type' => 'day',
|
|
'day' => 1,
|
|
'hour' => 1,
|
|
'min' => 1
|
|
],
|
|
'class' => 'app\job\schedule\SiteExpireClose',
|
|
'function' => ''
|
|
],
|
|
[
|
|
'key' => 'site_stat',
|
|
'name' => '站点统计',
|
|
'desc' => '',
|
|
'time' => [
|
|
'type' => 'hour',
|
|
'hour' => 1,
|
|
],
|
|
'class' => 'app\job\schedule\SiteStatJob',
|
|
'function' => ''
|
|
]
|
|
];
|