Commit 0470d425 authored by BlackJokerCJ's avatar BlackJokerCJ

xiyi

parent 2ab1aa5f
...@@ -44,7 +44,7 @@ public class CreditThirdDataJob { ...@@ -44,7 +44,7 @@ public class CreditThirdDataJob {
thirdCredit.put("reqNo", c.getOrderNo()); thirdCredit.put("reqNo", c.getOrderNo());
thirdCredit.put("type", "01"); thirdCredit.put("type", "01");
ZyJsonResult zyJsonResult = abcHttpClient.postRequest(thirdCredit.toJSONString(), ZNPostUrlEnum.CREDIT_QUERY.getCode()); ZyJsonResult zyJsonResult = abcHttpClient.postRequest(thirdCredit.toJSONString(), ZNPostUrlEnum.CREDIT_QUERY.getCode());
if(zyJsonResult.getStatus().equalsIgnoreCase("00")){ if("00".equalsIgnoreCase(zyJsonResult.getStatus())||"01".equalsIgnoreCase(zyJsonResult.getStatus())){
JSONArray jsonArray = zyJsonResult.getExternalInfo(); JSONArray jsonArray = zyJsonResult.getExternalInfo();
processThirdData(c.getClientCell(), c.getOrderNo(), jsonArray); processThirdData(c.getClientCell(), c.getOrderNo(), jsonArray);
} }
...@@ -58,7 +58,7 @@ public class CreditThirdDataJob { ...@@ -58,7 +58,7 @@ public class CreditThirdDataJob {
thirdCredit.put("type", "02"); thirdCredit.put("type", "02");
ZyJsonResult zyJsonResult = abcHttpClient.postRequest(thirdCredit.toJSONString(), ZNPostUrlEnum.CREDIT_QUERY.getCode()); ZyJsonResult zyJsonResult = abcHttpClient.postRequest(thirdCredit.toJSONString(), ZNPostUrlEnum.CREDIT_QUERY.getCode());
if(zyJsonResult.getStatus().equalsIgnoreCase("00")){ if("00".equalsIgnoreCase(zyJsonResult.getStatus())||"01".equalsIgnoreCase(zyJsonResult.getStatus())){
JSONArray jsonArray = zyJsonResult.getExternalInfo(); JSONArray jsonArray = zyJsonResult.getExternalInfo();
processThirdData(w.getClientCell(), w.getOrderNo(), jsonArray); processThirdData(w.getClientCell(), w.getOrderNo(), jsonArray);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment