修改转发匹配

This commit is contained in:
lvleigang 2024-04-30 10:14:28 +08:00
parent e846a892d8
commit 66cc698844
1 changed files with 3 additions and 3 deletions

View File

@ -1979,7 +1979,7 @@ public class SysApplicationServiceImpl extends BaseService<SysApplicationEntity,
if(JSONUtil.isTypeJSON(body)){
JSONObject cheackdatas = JSONObject.parseObject(body);
String checkdata = cheackdatas.getString("Success");
if("true".equals(checkdata)){
if(checkdata != null && "true".equals(checkdata)){
sysMessageManageLogEntity.setStatus("3");//返回信息
}
}
@ -1987,7 +1987,7 @@ public class SysApplicationServiceImpl extends BaseService<SysApplicationEntity,
if(JSONUtil.isTypeJSON(body)){
JSONObject cheackdatas = JSONObject.parseObject(body);
String checkdata = cheackdatas.getString("ResultString");
if("success".equals(checkdata)){
if(checkdata != null && "success".equals(checkdata)){
sysMessageManageLogEntity.setStatus("3");//返回信息
}
}
@ -1995,7 +1995,7 @@ public class SysApplicationServiceImpl extends BaseService<SysApplicationEntity,
if(JSONUtil.isTypeJSON(body)){
JSONObject cheackdatas = JSONObject.parseObject(body);
String checkdata = cheackdatas.getString("status");
if("success".equals(checkdata)){
if(checkdata != null && "success".equals(checkdata)){
sysMessageManageLogEntity.setStatus("3");//返回信息
}
}