Merge remote-tracking branch 'origin/master'

master
yuan 7 years ago
commit c9234149f1

@ -1175,8 +1175,12 @@ public class RetailAppServiceImp implements RetailAppService {
deviceSupport.findRegister(clientType); deviceSupport.findRegister(clientType);
JSONObject res = royalPayCMSSupport.listArticles("app_ad", false, true, 1, 10); JSONObject res = royalPayCMSSupport.listArticles("app_ad", false, true, 1, 10);
JSONArray acts = res.getJSONArray("data"); JSONArray acts = res.getJSONArray("data");
int selectNo = RandomUtils.nextInt(0,acts.size()); if (acts.size()>0){
return acts.getJSONObject(selectNo); int selectNo = RandomUtils.nextInt(0,acts.size());
return acts.getJSONObject(selectNo);
}
return null;
} }
private static boolean mathchLetterorNum(String str) { private static boolean mathchLetterorNum(String str) {

Loading…
Cancel
Save