123456789101112131415161718192021222324252627 |
- <?php
- namespace app\common\command;
- use app\common\model\Mobile;
- use app\common\model\MobileOrder;
- use think\console\Command;
- use think\console\Input;
- use think\console\Output;
- use think\Db;
- use think\Log;
- class IdImportCommand extends Command{
- protected function configure()
- {
- $this->setName('id:import')->setDescription('订单超时关闭');
- }
- protected function execute(Input $input, Output $output)
- {
- $count=0;
- Db::name('mobile')->whereNotExists("select id from mobileid where mobileid.id=mobile.id")->field('id')->chunk(100000,function ($ids)use ($count){
- $count+=count($ids);
- Db::name('mobileid')->insertAll($ids);
- $this->output->info($count);
- });
- }
- }
|