|
|
@@ -434,10 +434,11 @@ public class PositionServiceImpl extends ServiceImpl<PositionMapper, Position> i
|
|
|
String positionId = requestMap.get("positionId");
|
|
|
String positionCategory = requestMap.get("positionCategory");
|
|
|
String type = requestMap.get("type"); //1:查询新报名 2:查询待面试
|
|
|
- String url = path + "/f/api/sendmessage/sendResume?positionId=" + positionId + "&positionCategory=" + positionCategory + "&type=" + type;
|
|
|
+ String url = "http://localhost:8080/f/api/sendmessage/sendResume?positionId=" + positionId + "&positionCategory=" + positionCategory + "&type=" + type;
|
|
|
String data = CommUtil.get(url, null);
|
|
|
returnMap = new HashMap<String, Object>();
|
|
|
- returnMap.put("data", StringEscapeUtils.unescapeHtml4(data));
|
|
|
+ System.out.println(data);
|
|
|
+ returnMap.put("data", data);
|
|
|
returnMap.put("success", true);
|
|
|
} catch (Exception e) {
|
|
|
returnMap.put("success", false);
|