This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/store/model/sharing/ActiveUsers.php

31 lines
705 B
PHP
Raw Normal View History

2020-04-25 22:20:29 +08:00
<?php
namespace app\store\model\sharing;
use app\common\model\sharing\ActiveUsers as ActiveUsersModel;
/**
* 拼团拼单成员模型
* Class ActiveUsers
* @package app\store\model\sharing
*/
class ActiveUsers extends ActiveUsersModel
{
/**
* 获取拼单成员列表
* @param $active_id
* @return \think\Paginator
* @throws \think\exception\DbException
*/
public function getList($active_id)
{
return $this->with(['sharingOrder.address', 'user'])
->where('active_id', '=', $active_id)
->order(['create_time' => 'asc'])
->paginate(15, false, [
'query' => request()->request()
]);
}
}