option('count'); $users = (int)$this->option('users'); $this->info("开始生成:供需 {$count} 条,最少用户 {$users} 个..."); $generator = new SupplyDemandTestDataGenerator(); $generator->generate($count, $users, function (string $msg) { $this->line($msg); }); $this->info('生成完成'); return self::SUCCESS; } }