// +---------------------------------------------------------------------- declare (strict_types = 1); namespace app\api\model\user; use app\api\service\User as UserService; use app\common\model\user\PointsLog as PointsLogModel; /** * 用户余额变动明细模型 * Class PointsLog * @package app\api\model\user */ class PointsLog extends PointsLogModel { /** * 获取日志明细列表 * @return \think\Paginator * @throws \app\common\exception\BaseException * @throws \think\db\exception\DbException */ public function getList() { // 当前用户ID $userId = UserService::getCurrentLoginUserId(); // 获取列表数据 return $this->where('user_id', '=', $userId) ->order(['create_time' => 'desc']) ->paginate(15); } }