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

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