| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- namespace app\api\model\user;
- use app\common\model\user\BalanceLog as BalanceLogModel;
- /**
- * 用户余额变动明细模型
- * Class BalanceLog
- * @package app\api\model\user
- */
- class BalanceLog extends BalanceLogModel
- {
- /**
- * 隐藏字段
- * @var array
- */
- protected $hidden = [
- 'wxapp_id',
- ];
- /**
- * 获取账单明细列表
- * @param $userId
- * @return \think\Paginator
- * @throws \think\exception\DbException
- */
- public function getList($userId)
- {
- // 获取列表数据
- return $this->where('user_id', '=', $userId)
- ->order(['create_time' => 'desc'])
- ->paginate(15, false, [
- 'query' => request()->request()
- ]);
- }
- }
|