Ejemplo n.º 1
0
 /**
  * 获取用户列表
  *
  * @param int $offset
  * @param int $limit
  *
  * @return Overtrue\Wechat\Utils\Bag
  */
 public function lists($offset = 0, $limit = 10)
 {
     $params = array('begin' => $offset, 'limit' => $limit);
     $stores = $this->http->jsonPost(self::API_LIST, $params);
     return Arr::fetch($stores['business_list'], 'base_info');
 }