|
@@ -43,7 +43,8 @@ public class JiaoYangFenXiaoServiceImpl implements IJiaoYangFenXiaoService {
|
|
|
|
|
|
@Override
|
|
|
public void getOrderList(String cookie, Integer offset, Long orderCreateTimeStart, Long orderCreateTimeEnd) throws Exception {
|
|
|
- Thread.sleep(4000L);
|
|
|
+ Thread.sleep(3000L);
|
|
|
+ log.info("骄阳订单数据入参,开始时间:{},结束时间:{},数据:{}", DateUtils.tempToLongDateStr(orderCreateTimeStart), DateUtils.tempToLongDateStr(orderCreateTimeEnd), offset);
|
|
|
Map<String, Object> params = new HashMap<>();
|
|
|
if (!Check.isNull(orderCreateTimeStart)) {
|
|
|
params.put("orderCreateTimeStart", orderCreateTimeStart);
|
|
@@ -136,7 +137,7 @@ public class JiaoYangFenXiaoServiceImpl implements IJiaoYangFenXiaoService {
|
|
|
|
|
|
@Override
|
|
|
public void getClipCooperation(String cookie, Integer offset, Long statDate, Integer status) throws Exception {
|
|
|
- Thread.sleep(500L);
|
|
|
+ Thread.sleep(2000L);
|
|
|
Map<String, Object> params = new HashMap<>();
|
|
|
params.put("status", status);
|
|
|
params.put("limit", 10);
|
|
@@ -186,12 +187,12 @@ public class JiaoYangFenXiaoServiceImpl implements IJiaoYangFenXiaoService {
|
|
|
clipCooperation.setClipGmv30d(jsonObject.getString("clipGmv30d"));
|
|
|
clipCooperation.setAuthItemGmv30d(jsonObject.getString("authItemGmv30d"));
|
|
|
clipCooperation.setStatDate(statDate);
|
|
|
- JSONObject getData = this.getClipData(jsonObject.getLong("clipId"), cookie);
|
|
|
+ /* JSONObject getData = this.getClipData(jsonObject.getLong("clipId"), cookie);
|
|
|
if (!Check.isNull(getData)) {
|
|
|
clipCooperation.setVideoCount(getData.getString("videoCount"));
|
|
|
clipCooperation.setVideoShow(getData.getString("videoShow"));
|
|
|
}
|
|
|
-
|
|
|
+*/
|
|
|
adds.add(clipCooperation);
|
|
|
|
|
|
|