This commit is contained in:
songliang 2023-06-19 17:25:12 +08:00
parent 05de1aef26
commit 6509b8c68a
2 changed files with 6 additions and 2 deletions

View File

@ -6,5 +6,7 @@ namespace services;
class BuyShopGoodsCbService
{
public function process($order){
}
}

View File

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