pay/webapp/sdkwarpper/BaseSdk.php
aozhiwei 6cb9a7ec6d 1
2020-10-19 16:48:19 +08:00

44 lines
628 B
PHP

<?php
namespace sdkwarpper;
require 'classes/OrderCtrl.php';
use phpcommon;
use classes;
class BaseSdk
{
protected $real_channel = '0';
protected $channel = '0';
protected $gameid = 0;
protected $order_ctrl = null;
protected $config = null;
function __construct()
{
$this->order_ctrl = new classes\OrderCtrl();
error_log('basesdk new');
}
protected function setChannel($channel)
{
$this->channel = $channel;
}
public function preOrder()
{
}
public function payNotify()
{
}
public function queryOrderInfo()
{
}
}