game2006api/webapp/controller/MarketController.class.php
aozhiwei 0811688c39 1
2022-01-25 17:27:01 +08:00

35 lines
583 B
PHP

<?php
require_once('mt/MarketGoods.php');
require_once('mt/MarketBatch.php');
require_once('mt/Item.php');
require_once('mt/WhiteList.php');
require_once('mt/Currency.php');
require_once('models/Goods.php');
use phpcommon\SqlHelper;
use models\Goods;
class MarketController extends BaseController {
public function searchBox()
{
$currBatch = mt\MarketBatch::getCurrentBatch();
myself()->_rspData($currBatch);
}
public function buyBox()
{
}
public function getNftList()
{
}
public function getNftDetail()
{
}
}