1234567891011121314151617181920212223242526272829303132 |
- <?php
- declare (strict_types = 1);
- namespace app\event;
- use app\model\shop\ShopSettlement;
- use Carbon\Carbon;
- class ShopWithdrawPeriodCalc
- {
-
- public function handle($data)
- {
- $model = new ShopSettlement();
- $time = Carbon::today()->timestamp;
- $res = $model->shopSettlement($time);
- return $res;
- }
-
- }
|