> /dev/null 2>&1 $schedule->command(KttOrderQuery::class)->everyMinute(); $schedule->command(GoodsSkuDailyReport::class)->dailyAt('06:00'); $schedule->command(Inventory::class)->dailyAt('07:00'); $schedule->command(DailySalesReport::class, ['S1'])->dailyAt('12:00'); $schedule->command(DailySalesReport::class, ['S2'])->dailyAt('13:30'); $schedule->command(DailySalesReport::class, ['S3'])->dailyAt('15:00'); $schedule->command(DailySalesReport::class, ['S4'])->dailyAt('16:00'); $schedule->command(DailySalesReport::class, ['S5'])->dailyAt('17:30'); $schedule->command(DailySalesReport::class, ['S6'])->dailyAt('20:00'); $schedule->command(DailySalesReport::class, ['S7'])->dailyAt('09:30'); $schedule->command(DeleteKttQuery::class)->daily(); //新增价格校验 $schedule->command(CheckPrice::class)->dailyAt('07:00'); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } }