CreateGoodsHash.php 830 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace app\admin\command;
  3. use datamodel\Goods;
  4. use logicmodel\ChainLogic;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\Output;
  8. class CreateGoodsHash extends Command
  9. {
  10. protected function configure()
  11. {
  12. $this->setName('create:goods:hash');
  13. }
  14. protected function execute(Input $input, Output $output)
  15. {
  16. try {
  17. if (!lock(__CLASS__, 1)) {
  18. $output->error('已在运行');
  19. return;
  20. }
  21. $goods = Goods::whereRaw('stock>hash_num')->limit(10)->select();
  22. collection($goods)->each(function (Goods $goods) {
  23. ChainLogic::instance()->saveGoodsHash($goods);
  24. });
  25. }catch (\Exception $e){
  26. lock(__CLASS__,1,true);
  27. throw $e;
  28. }
  29. }
  30. }