Files
webman_duanju/app/czg/app/controller/UserPrizeExchangeController.php
2025-08-14 17:19:26 +08:00

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));
}
}