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.
82 lines
2.1 KiB
82 lines
2.1 KiB
<?php
|
|
|
|
return [
|
|
[
|
|
'key' => 'resource_auto_allocation',
|
|
'name' => '自动分配资源',
|
|
'desc' => '',
|
|
'time' => [
|
|
'type' => 'day',
|
|
'day' => 1,
|
|
'hour' => 0,
|
|
'min' => 5
|
|
],
|
|
'class' => 'app\job\transfer\schedule\ResourceAutoAllocation',
|
|
'function' => ''
|
|
],
|
|
[
|
|
'key' => 'course_schedule_job',
|
|
'name' => '自动排课',
|
|
'desc' => '',
|
|
'time' => [
|
|
'type' => 'day',
|
|
'day' => 1,
|
|
'hour' => 0,
|
|
'min' => 5
|
|
],
|
|
'class' => 'app\job\transfer\schedule\CourseScheduleJob',
|
|
'function' => ''
|
|
],
|
|
[
|
|
'key' => 'PerformanceCalculation',
|
|
'name' => '核算绩效',
|
|
'desc' => '',
|
|
'time' => [
|
|
'type' => 'day',
|
|
'day' => 1,
|
|
'hour' => 1,
|
|
'min' => 5
|
|
],
|
|
'class' => 'app\job\transfer\schedule\PerformanceCalculation',
|
|
'function' => ''
|
|
],
|
|
[
|
|
'key' => 'HandleCourseSchedule',
|
|
'name' => '处理课程状态和学员状态',
|
|
'desc' => '',
|
|
'time' => [
|
|
'type' => 'day',
|
|
'day' => 1,
|
|
'hour' => 0,
|
|
'min' => 5
|
|
],
|
|
'class' => 'app\job\schedule\HandleCourseSchedule',
|
|
'function' => ''
|
|
],
|
|
[
|
|
'key' => 'teaching_personnel_sync',
|
|
'name' => '教研管理人员同步',
|
|
'desc' => '定时同步教练部人员权限到教研管理模块',
|
|
'time' => [
|
|
'type' => 'day',
|
|
'day' => 1,
|
|
'hour' => 2,
|
|
'min' => 0
|
|
],
|
|
'class' => 'app\job\schedule\TeachingPersonnelSync',
|
|
'function' => 'doJob'
|
|
],
|
|
[
|
|
'key' => 'ServiceLogsDistribution',
|
|
'name' => '服务分发',
|
|
'desc' => '检查服务记录是否分配给正确的用户',
|
|
'time' => [
|
|
'type' => 'day',
|
|
'day' => 1,
|
|
'hour' => 2,
|
|
'min' => 0
|
|
],
|
|
'class' => 'app\job\schedule\ServiceLogsDistribution',
|
|
'function' => 'doJob'
|
|
],
|
|
];
|
|
|