pay/webapp/sdkwarpper/BaseSdk.php
aozhiwei c981405d8c 1
2020-11-09 14:19:23 +08:00

40 lines
617 B
PHP

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