Pu Zhibing
9 小时以前 55132b44cd49f2a312a8fb2523ffda35a7485fd7
user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/util/AppUserUtil.java
@@ -61,11 +61,12 @@
    * @return
    * @throws Exception
    */
   public static String addUser(String phone, String code, String areaCode) throws Exception{
   public static String addUser(String phone, String code, String areaCode, String onconUUID) throws Exception{
      HttpRequest post = HttpUtil.createPost(qytConfig.getChuxingUrl() + "/user-server/base/user/addAppUser");
      post.form("phone", phone);
      post.form("code", code);
      post.form("areaCode", areaCode);
      post.form("onconUUID", onconUUID);
      HttpResponse execute = post.execute();
      if(200 != execute.getStatus()){
         log.error("打车系统-注册用户失败:{}", execute.body());