'', 'bind_sign' => '', 'third_type' => '0', 'third_nickname' => '', ); public function getByTypeAndUid($type, $uid) { return $this->query->where('third_type', $type)->where('uid', $uid)->get(); } public function getByTypeAndBindsign($type, $bind_sign) { return $this->query->where('third_type', $type)->where('bind_sign', $bind_sign)->get(); } public function getAllByUid($uid) { return $this->query->where('uid', $uid)->getall('bind_sign'); } }