6
0
Fork 0
release
李静 2022-01-20 19:02:23 +08:00
parent b0c651818d
commit 176dd172b8
1 changed files with 6 additions and 3 deletions

View File

@ -25,13 +25,16 @@ class Kernel extends ConsoleKernel
protected function schedule(Schedule $schedule)
{
$schedule->command('dealer:manage-subsidy-settle')
->twiceMonthly(5, 20, '2:00');
->twiceMonthly(5, 20, '2:00')
->runInBackground();
$schedule->command('dealer:purchase-subsidy-settle')
->twiceMonthly(5, 20, '3:00');
->twiceMonthly(5, 20, '3:00')
->runInBackground();
$schedule->command('dealer:manager-subsidy-settle')
->monthlyOn(1, '3:00');
->monthlyOn(1, '3:00')
->runInBackground();
}
/**