123456789101112131415161718192021222324252627282930 |
- <?php
- namespace app\admin\command;
- use datamodel\Users;
- use logicmodel\ChainLogic;
- use think\console\Command;
- use think\console\Input;
- use think\console\Output;
- class CreateUserAddress extends Command
- {
- protected function configure()
- {
- $this->setName('create:user:address');
- }
- protected function execute(Input $input, Output $output)
- {
- Users::whereNull('new_address')->chunk(1,function ($data) use ($output) {
- collection($data)->each(function (Users $users) use ($output) {
- try {
- $users->addAddress();
- }catch (\Exception $e){
- $output->error("user:{$users['id']} {$e->getMessage()}");
- }
- });
- });
- }
- }
|