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.
56 lines
1.8 KiB
56 lines
1.8 KiB
<?php
|
|
|
|
namespace App\Console;
|
|
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
|
|
class Kernel extends ConsoleKernel
|
|
{
|
|
/**
|
|
* Define the application's command schedule.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
* @return void
|
|
*/
|
|
protected function schedule(Schedule $schedule)
|
|
{
|
|
// 发送消息
|
|
$schedule->command("sms:notification")->everyMinute();
|
|
// 更新课程状态
|
|
$schedule->command('update_sign_status')->everyMinute();
|
|
// 更新首字母
|
|
$schedule->command('update_letter')->everyMinute();
|
|
// 更新可预约次数
|
|
$schedule->command('update_appointment_total')->dailyAt('1:00');
|
|
// 生日检测
|
|
$schedule->command('check_birthday')->dailyAt('09:00');
|
|
// 邮件群发
|
|
$schedule->command('send_email')->everyMinute();
|
|
// 推送课程人员信息
|
|
$schedule->command('push_courses')->dailyAt('23:00');
|
|
// 更新学员编号
|
|
$schedule->command('update_user_no')->dailyAt('00:05');
|
|
// 更新课程校友资格
|
|
$schedule->command('auto_schoolmate')->everyThirtyMinutes();
|
|
// 更新公司信息
|
|
$schedule->command('update_company')->everyFiveMinutes();
|
|
// 全量同步公司信息(每天凌晨执行,不同步经纬度和地址)
|
|
$schedule->command('sync:company')->dailyAt('02:00');
|
|
// 同步老师课程方向
|
|
$schedule->command('sync:teacher_direction')->hourly();
|
|
}
|
|
|
|
/**
|
|
* Register the commands for the application.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function commands()
|
|
{
|
|
$this->load(__DIR__ . '/Commands');
|
|
|
|
require base_path('routes/console.php');
|
|
}
|
|
}
|