This commit is contained in:
aozhiwei 2022-01-12 11:51:54 +08:00
parent a869693188
commit 00a6566084

View File

@ -0,0 +1,32 @@
<?php
require_once('mt/Market.php');
require_once('mt/Item.php');
require_once('mt/WhiteList.php');
require_once('mt/Currency.php');
use phpcommon\SqlHelper;
class MarketController extends BaseController {
public function search()
{
}
public function buy()
{
}
public function prebuy()
{
}
public function sell()
{
}
public function detail()
{
}
}