private function _getCustomerInfoByMap($map)
 {
     $customer = new CustomerModel();
     $customer->setMap($map);
     $customerArr = $customer->getAllDataArrByMap();
     $key = 'openid';
     $customerArr = change_key($customerArr, $key);
     return $customerArr;
 }