|
|
@@ -535,7 +535,7 @@ public class PositionServiceImpl extends ServiceImpl<PositionMapper, Position> i
|
|
|
String isEmploy = requestMap.get("isEmploy"); //是否录用(0:拒绝 1:录用)
|
|
|
sendMsgUrl = path + "/f/api/sendmessage/changeApplyStatus?positionId=" + positionId + "&userId=" + userId + "&positionCategory=" + positionCategory + "&type=" + type + "&isEmploy=" + isEmploy;
|
|
|
}
|
|
|
- JSONObject paramJson = JSONObject.fromObject(CommUtil.doPost(sendMsgUrl, null));
|
|
|
+ JSONObject paramJson = JSONObject.fromObject(CommUtil.get(sendMsgUrl, null));
|
|
|
String returnStatus = paramJson.getString("success");
|
|
|
if ("1".equals(returnStatus)) {
|
|
|
returnMap.put("success", true);
|
|
|
@@ -572,7 +572,7 @@ public class PositionServiceImpl extends ServiceImpl<PositionMapper, Position> i
|
|
|
String isEmploy = requestMap.get("isEmploy"); //是否录用(0:拒绝 1:录用)
|
|
|
sendMsgUrl = path + "/f/api/sendmessage/changeApplysStatus?positionId=" + positionId + "&userId=" + userId + "&positionCategory=" + positionCategory + "&type=" + type + "&isEmploy=" + isEmploy;
|
|
|
}
|
|
|
- JSONObject paramJson = JSONObject.fromObject(CommUtil.doPost(sendMsgUrl, null));
|
|
|
+ JSONObject paramJson = JSONObject.fromObject(CommUtil.get(sendMsgUrl, null));
|
|
|
String returnStatus = paramJson.getString("success");
|
|
|
if ("1".equals(returnStatus)) {
|
|
|
returnMap.put("success", true);
|
|
|
@@ -613,7 +613,7 @@ public class PositionServiceImpl extends ServiceImpl<PositionMapper, Position> i
|
|
|
+ "&contactPerson=" + URLEncoder.encode(contactPerson) + "&contactPhone=" + contactPhone + "&positionName=" + URLEncoder.encode(positionName)
|
|
|
+ "&companyName=" + URLEncoder.encode(companyName);
|
|
|
|
|
|
- JSONObject paramJson = JSONObject.fromObject(CommUtil.doPost(sendMsgUrl, null));
|
|
|
+ JSONObject paramJson = JSONObject.fromObject(CommUtil.get(sendMsgUrl, null));
|
|
|
String returnStatus = paramJson.getString("success");
|
|
|
if ("1".equals(returnStatus)) {
|
|
|
returnMap.put("success", true);
|