setName('presell')->setDescription('预售活动相关'); } protected function execute(Input $input, Output $output) { $lists = PresellModel::where('end_time', '<', time())->where('status', PresellEnum::STATUS_START)->cursor(); foreach ($lists as $presell) { PresellLogic::end([ 'id' => $presell->id ]); } } }