game2006api/webapp/controller/HashRateShopController.class.php
aozhiwei 56af030651 1
2024-10-10 11:45:51 +08:00

27 lines
440 B
PHP

<?php
require_once('services/HashRateShopService.php');
use phpcommon\SqlHelper;
use services\HashRateShopService;
class HashRateShop extends BaseAuthedController {
public function getGoodsList()
{
$goodsList = HashRateShopService::getGoodsList();
myself()->_rspData(
array(
'goods_list' => $goodsList,
)
);
}
public function buyGoodsS()
{
}
}