24 lines
572 B
PHP
24 lines
572 B
PHP
<?php
|
|
|
|
namespace app\czg\app\controller;
|
|
|
|
use app\api\model\CommonInfo;
|
|
use app\api\model\Orders;
|
|
use app\api\model\TbUser;
|
|
use app\common\controller\Frontend;
|
|
use app\common\library\DatabaseRoute;
|
|
use app\exception\CzgException;
|
|
use app\queue\DiscReceiveQueue;
|
|
use ba\Random;
|
|
use think\facade\Db;
|
|
|
|
class UserPrizeExchangeController extends Frontend
|
|
{
|
|
// 查询大转盘抽奖记录
|
|
public function page()
|
|
{
|
|
$get = $this->request->get();
|
|
return $this->ApiDataReturn(\app\api\model\UserPrizeExchange::pages($get, $this->auth->user_id));
|
|
}
|
|
|
|
} |