From 6509b8c68a937cdd9d1da818f0c149aaadfb23f8 Mon Sep 17 00:00:00 2001 From: songliang Date: Mon, 19 Jun 2023 17:25:12 +0800 Subject: [PATCH] ... --- webapp/services/callback/BuyShopGoodsCbService.php | 4 +++- webapp/services/callback/gameItemMallBuyOk.php | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/webapp/services/callback/BuyShopGoodsCbService.php b/webapp/services/callback/BuyShopGoodsCbService.php index 91e01750..def4688d 100644 --- a/webapp/services/callback/BuyShopGoodsCbService.php +++ b/webapp/services/callback/BuyShopGoodsCbService.php @@ -6,5 +6,7 @@ namespace services; class BuyShopGoodsCbService { - + public function process($order){ + + } } \ No newline at end of file diff --git a/webapp/services/callback/gameItemMallBuyOk.php b/webapp/services/callback/gameItemMallBuyOk.php index 2d7966b4..c5d6e2fd 100644 --- a/webapp/services/callback/gameItemMallBuyOk.php +++ b/webapp/services/callback/gameItemMallBuyOk.php @@ -4,6 +4,7 @@ namespace services; require_once('phpcommon/bchelper.php'); require_once ('services/callback/BuyPassCbService.php'); +require_once ('services/callback/BuyShopGoodsCbService.php'); use phpcommon\SqlHelper; @@ -29,7 +30,8 @@ class gameItemMallBuyOk { } else { // 老宋 处理... - + $shopGoodsCbService = new BuyShopGoodsCbService(); + $shopGoodsCbService->process($orderDb); }