12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace app\admin\command;
- use datamodel\Goods;
- use logicmodel\ChainLogic;
- use think\console\Command;
- use think\console\Input;
- use think\console\Output;
- class CreateGoodsHash extends Command
- {
- protected function configure()
- {
- $this->setName('create:goods:hash');
- }
- protected function execute(Input $input, Output $output)
- {
- try {
- if (!lock(__CLASS__, 1)) {
- $output->error('已在运行');
- return;
- }
- $goods = Goods::whereRaw('stock>hash_num')->limit(10)->select();
- collection($goods)->each(function (Goods $goods) {
- ChainLogic::instance()->saveGoodsHash($goods);
- });
- }catch (\Exception $e){
- lock(__CLASS__,1,true);
- throw $e;
- }
- }
- }
|