123456789101112131415161718192021222324252627282930313233 |
- <?php
- declare (strict_types = 1);
- namespace app\event;
- use app\model\goods\Goods;
- class ShopClose
- {
- public function handle($data)
- {
- $site_id = $data["site_id"];
-
- $goods_model = new Goods();
- $goods_result = $goods_model->lockup([["site_id", "=", $site_id]], "店铺关闭");
- return $goods_result;
- }
- }
|