|
|
@@ -86,13 +86,7 @@ public class AppIrsManage { |
|
|
|
ApiApplyDTO apiApply = new ApiApplyDTO(); |
|
|
|
apiApply.setAppId(appCode); |
|
|
|
JSONObject jsonObject = this.searchApp(apiApply); |
|
|
|
JSONObject datas = jsonObject.getJSONObject("datas"); |
|
|
|
VUtils.isTrue(Objects.isNull(datas)).throwMessage("应用在IRS不存在!"); |
|
|
|
JSONObject data = jsonObject.getJSONObject("data"); |
|
|
|
VUtils.isTrue(Objects.isNull(data)).throwMessage("应用在IRS不存在!"); |
|
|
|
JSONArray apiArray = data.getJSONArray("apiApplySearchResult"); |
|
|
|
VUtils.isTrue(CollUtil.isEmpty(apiArray)).throwMessage("应用在IRS不存在!"); |
|
|
|
ApiApplySearchResult apiApplySearchResult = JSON.parseObject(JSON.toJSONString(apiArray.get(0)),ApiApplySearchResult.class); |
|
|
|
ApiApplySearchResult apiApplySearchResult = JSON.parseObject(JSON.toJSONString(jsonObject),ApiApplySearchResult.class); |
|
|
|
VUtils.isTrue(Objects.isNull(apiApplySearchResult)).throwMessage("应用在IRS不存在!"); |
|
|
|
|
|
|
|
long timestamp = System.currentTimeMillis(); |
|
|
|