27 lines
440 B
PHP
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()
|
|
{
|
|
|
|
}
|
|
|
|
}
|