public Dictionary <string, Object> GetMobileCode(string phone)
 {
     try
     {
         Dictionary <string, Object> dic = new Dictionary <string, object>();
         dic = CommonRequest.ApiGetMobileCode(phone);
         return(dic);
     }
     catch (Exception e)
     {
         logger.Error("获取手机短信验证码:" + e.Message);
         return(null);
     }
 }