| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | 
							- <?php
 
- namespace App\Console\Commands\Transfer;
 
- use Illuminate\Console\Command;
 
- class Transfer extends Command
 
- {
 
-     
 
-     protected $signature = 'aix:transfer-all';
 
-     
 
-     protected $description = '转移旧系统数据';
 
-     
 
-     public function __construct()
 
-     {
 
-         parent::__construct();
 
-     }
 
-     
 
-     public function handle()
 
-     {
 
-         $this->info('开始转移个人用户数据...');
 
-         $this->call('aix:transfer-member');
 
-         $this->info('开始转移企业用户数据...');
 
-         $this->call('aix:transfer-company');
 
-         $this->info('开始转移内容数据...');
 
-         $this->call('aix:transfer-content');
 
-     }
 
- }
 
 
  |