|
@@ -691,6 +691,13 @@ public class XiaoJuServiceImpl implements XiaoJuService {
|
|
xiaoJuActivityReceiverDao.save(xiaoJuActivityReceiver);
|
|
xiaoJuActivityReceiverDao.save(xiaoJuActivityReceiver);
|
|
apiLog.setResponse(JSONUtil.toJsonStr(response));
|
|
apiLog.setResponse(JSONUtil.toJsonStr(response));
|
|
apiLogDao.save(apiLog);
|
|
apiLogDao.save(apiLog);
|
|
|
|
+ List<QueryGetPromotionResponse> list = new ArrayList<>();
|
|
|
|
+
|
|
|
|
+ for (Object genPromotionInfo : response) {
|
|
|
|
+ JSONObject entries = JSONUtil.parseObj(genPromotionInfo);
|
|
|
|
+ QueryGetPromotionResponse bean = entries.toBean(QueryGetPromotionResponse.class);
|
|
|
|
+ list.add(bean);
|
|
|
|
+ }
|
|
List<QueryGetPromotionResponse> list=new ArrayList<>();
|
|
List<QueryGetPromotionResponse> list=new ArrayList<>();
|
|
for (GenPromotionInfo genPromotionInfo : response) {
|
|
for (GenPromotionInfo genPromotionInfo : response) {
|
|
JSONObject entries = JSONUtil.parseObj(genPromotionInfo);
|
|
JSONObject entries = JSONUtil.parseObj(genPromotionInfo);
|