ShopWithdrawPeriodCalc.php 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. // +---------------------------------------------------------------------+
  3. // | NiuCloud | [ WE CAN DO IT JUST NiuCloud ]  |
  4. // +---------------------------------------------------------------------+
  5. // | Copy right 2019-2029 www.niucloud.com  |
  6. // +---------------------------------------------------------------------+
  7. // | Author | NiuCloud <niucloud@outlook.com>  |
  8. // +---------------------------------------------------------------------+
  9. // | Repository | https://github.com/niucloud/framework.git  |
  10. // +---------------------------------------------------------------------+
  11. declare (strict_types = 1);
  12. namespace app\event;
  13. use app\model\shop\ShopSettlement;
  14. use Carbon\Carbon;
  15. /**
  16. * 店铺账期转账
  17. */
  18. class ShopWithdrawPeriodCalc
  19. {
  20. // 行为扩展的执行入口必须是run
  21. public function handle($data)
  22. {
  23. $model = new ShopSettlement();
  24. $time = Carbon::today()->timestamp;
  25. $res = $model->shopSettlement($time);
  26. return $res;
  27. }
  28. }