You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
542 B
PHP
28 lines
542 B
PHP
<?php
|
|
/**
|
|
* 定时自动完成
|
|
*/
|
|
namespace Admin\Controller;
|
|
use Admin\Model\SpendModel;
|
|
use Think\Think;
|
|
use Base\Tool\Printer;
|
|
use Base\Tool\TaskClient;
|
|
use Base\Service\PromoteService;
|
|
use GuzzleHttp\Client;
|
|
use think\Db;
|
|
use Base\Tool\GameCatClient;
|
|
|
|
class GameApiController extends Think {
|
|
|
|
protected function _initialize()
|
|
{
|
|
C(api('Config/lists'));
|
|
}
|
|
|
|
public function getGameCatPayTypes() {
|
|
$gameCatClient = new GameCatClient();
|
|
$result = $gameCatClient->api('get-pay-type');
|
|
|
|
}
|
|
}
|