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); }