www.gusucode.com > Aycms自媒体建站系统PHP版 v1.0.1源码程序 > Aycms_v1.0.1/vendor/thinkcmf/cmf-api/src/user/controller/CoinController.php

    <?php
// +----------------------------------------------------------------------
// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2017 http://www.thinkcmf.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: Powerless < wzxaini9@gmail.com>
// +----------------------------------------------------------------------
namespace app\user\controller;

use api\user\model\UserScoreLogModel;
use cmf\controller\RestUserBaseController;

class CoinController extends RestUserBaseController
{
    /**
     * 查询金币日志
     * @throws \think\exception\DbException
     */
    public function logs()
    {
        $userId            = $this->getUserId();
        $userScoreLogModel = new UserScoreLogModel();

        $logs = $userScoreLogModel->where([
            'user_id' => $userId,
            'coin'    => ['neq', 0]
        ])->order('create_time DESC')->paginate();

        $this->success('请求成功', ['list' => $logs->items()]);
    }

}