You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
52 lines
1.3 KiB
<?php
|
|
|
|
return [
|
|
// [
|
|
// 'key' => 'order_close',
|
|
// 'name' => '未支付订单自动关闭',
|
|
// 'desc' => '',
|
|
// 'time' => [
|
|
// 'type' => 'min',
|
|
// 'min' => 1
|
|
// ],
|
|
// 'class' => '',
|
|
// 'function' => ''
|
|
// ],
|
|
// [
|
|
// 'key' => 'transfer_check_finish',
|
|
// 'name' => '检验在线转账是否处理完毕',
|
|
// 'desc' => '',
|
|
// 'time' => [
|
|
// 'type' => 'min',
|
|
// 'min' => 5
|
|
// ],
|
|
// 'class' => 'app\job\transfer\schedule\CheckFinish',
|
|
// 'function' => ''
|
|
// ],
|
|
[
|
|
'key' => 'resource_auto_allocation',
|
|
'name' => '自动分配资源',
|
|
'desc' => '',
|
|
'time' => [
|
|
'type' => 'day',
|
|
'day' => 1,
|
|
'hour' => 0,
|
|
'min' => 5
|
|
],
|
|
'class' => 'app\job\transfer\schedule\CheckFinish',
|
|
'function' => ''
|
|
],
|
|
[
|
|
'key' => 'course_schedule_job',
|
|
'name' => '自动排课',
|
|
'desc' => '',
|
|
'time' => [
|
|
'type' => 'day',
|
|
'day' => 1,
|
|
'hour' => 0,
|
|
'min' => 5
|
|
],
|
|
'class' => 'app\job\transfer\schedule\CourseScheduleJob',
|
|
'function' => ''
|
|
]
|
|
];
|
|
|