| | |
| | | * @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()); |