Commit 2ab1aa5f authored by BlackJokerCJ's avatar BlackJokerCJ

xiyi

parent 48b9e2e3
...@@ -55,6 +55,7 @@ public class ExceptionConfig { ...@@ -55,6 +55,7 @@ public class ExceptionConfig {
@ResponseBody @ResponseBody
public JsonResult handleHttpRequestMethodNotSupportedException(HttpRequestMethodNotSupportedException e, public JsonResult handleHttpRequestMethodNotSupportedException(HttpRequestMethodNotSupportedException e,
HttpServletRequest request) { HttpServletRequest request) {
log.error("全局异常捕捉:HttpRequestMethodNotSupportedException[url:{},message:{}]", request.getRequestURI(), log.error("全局异常捕捉:HttpRequestMethodNotSupportedException[url:{},message:{}]", request.getRequestURI(),
e.getMessage(), e); e.getMessage(), e);
return JsonResult.error(ExceptionCodeEnum.HTTP_METHOD_ERROR); return JsonResult.error(ExceptionCodeEnum.HTTP_METHOD_ERROR);
......
...@@ -27,7 +27,8 @@ public class ZyJsonResult<T> implements Serializable { ...@@ -27,7 +27,8 @@ public class ZyJsonResult<T> implements Serializable {
private T result; private T result;
@ApiModelProperty("扩展字段") @ApiModelProperty("扩展字段")
private JSONArray externalInfo; private JSONArray externalInfo;
@ApiModelProperty("返回码")
private String status ;
public JSONArray getExternalInfo() { public JSONArray getExternalInfo() {
return externalInfo; return externalInfo;
} }
...@@ -79,4 +80,19 @@ public class ZyJsonResult<T> implements Serializable { ...@@ -79,4 +80,19 @@ public class ZyJsonResult<T> implements Serializable {
this.result = result; this.result = result;
} }
public Boolean getSuccess() {
return success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
} }
...@@ -44,8 +44,10 @@ public class CreditThirdDataJob { ...@@ -44,8 +44,10 @@ 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());
JSONArray jsonArray = zyJsonResult.getExternalInfo(); if(zyJsonResult.getStatus().equalsIgnoreCase("00")){
processThirdData(c.getClientCell(), c.getOrderNo(), jsonArray); JSONArray jsonArray = zyJsonResult.getExternalInfo();
processThirdData(c.getClientCell(), c.getOrderNo(), jsonArray);
}
}); });
List<CreditModel> withdraw = creditComponent.getListModelByCreditThirdStatus("INIT-WITHDRAW"); List<CreditModel> withdraw = creditComponent.getListModelByCreditThirdStatus("INIT-WITHDRAW");
...@@ -54,9 +56,13 @@ public class CreditThirdDataJob { ...@@ -54,9 +56,13 @@ public class CreditThirdDataJob {
JSONObject thirdCredit = new JSONObject(); JSONObject thirdCredit = new JSONObject();
thirdCredit.put("reqNo", loanModel.getLoanNo()); thirdCredit.put("reqNo", loanModel.getLoanNo());
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());
JSONArray jsonArray = zyJsonResult.getExternalInfo(); if(zyJsonResult.getStatus().equalsIgnoreCase("00")){
processThirdData(w.getClientCell(), w.getOrderNo(), jsonArray); JSONArray jsonArray = zyJsonResult.getExternalInfo();
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