public Observable testPost02() {
    HashMap<String, String> map = new HashMap<String, String>();
    map.put("id", "123");
    map.put("name", "jack");

    return (Observable) mHttpRequest.doPost("http://www.baidu.com", map, Object.class);
  }
  public Observable testPost11(String user_name) {
    HashMap<String, String> map = new HashMap<String, String>();
    map.put("user_name", user_name);
    map.put("site", "1");

    return (Observable) mHttpRequest.doPost("http://www.baidu.com", map, Object.class);
  }
 public Observable testPost00() {
   return (Observable) mHttpRequest.doPost("http://www.baidu.com", Object.class);
 }