修改转发匹配
This commit is contained in:
parent
e846a892d8
commit
66cc698844
|
@ -1979,7 +1979,7 @@ public class SysApplicationServiceImpl extends BaseService<SysApplicationEntity,
|
||||||
if(JSONUtil.isTypeJSON(body)){
|
if(JSONUtil.isTypeJSON(body)){
|
||||||
JSONObject cheackdatas = JSONObject.parseObject(body);
|
JSONObject cheackdatas = JSONObject.parseObject(body);
|
||||||
String checkdata = cheackdatas.getString("Success");
|
String checkdata = cheackdatas.getString("Success");
|
||||||
if("true".equals(checkdata)){
|
if(checkdata != null && "true".equals(checkdata)){
|
||||||
sysMessageManageLogEntity.setStatus("3");//返回信息
|
sysMessageManageLogEntity.setStatus("3");//返回信息
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1987,7 +1987,7 @@ public class SysApplicationServiceImpl extends BaseService<SysApplicationEntity,
|
||||||
if(JSONUtil.isTypeJSON(body)){
|
if(JSONUtil.isTypeJSON(body)){
|
||||||
JSONObject cheackdatas = JSONObject.parseObject(body);
|
JSONObject cheackdatas = JSONObject.parseObject(body);
|
||||||
String checkdata = cheackdatas.getString("ResultString");
|
String checkdata = cheackdatas.getString("ResultString");
|
||||||
if("success".equals(checkdata)){
|
if(checkdata != null && "success".equals(checkdata)){
|
||||||
sysMessageManageLogEntity.setStatus("3");//返回信息
|
sysMessageManageLogEntity.setStatus("3");//返回信息
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1995,7 +1995,7 @@ public class SysApplicationServiceImpl extends BaseService<SysApplicationEntity,
|
||||||
if(JSONUtil.isTypeJSON(body)){
|
if(JSONUtil.isTypeJSON(body)){
|
||||||
JSONObject cheackdatas = JSONObject.parseObject(body);
|
JSONObject cheackdatas = JSONObject.parseObject(body);
|
||||||
String checkdata = cheackdatas.getString("status");
|
String checkdata = cheackdatas.getString("status");
|
||||||
if("success".equals(checkdata)){
|
if(checkdata != null && "success".equals(checkdata)){
|
||||||
sysMessageManageLogEntity.setStatus("3");//返回信息
|
sysMessageManageLogEntity.setStatus("3");//返回信息
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue