shareRepository = $shareRepository; } public function list($where = [], $page = '') { //获取列表 $list = $this->shareRepository->getShareData($where, $page); return $list; } public function find($where){ return $this->shareRepository->model()->where($where)->first(); } }