Commit 0ec20bfe by 毛树良

[add]:数据统计增加:多次进店顾客人数/人次统计

1 parent d39f409a
...@@ -291,5 +291,13 @@ public class MallDataStatisticsConsumer { ...@@ -291,5 +291,13 @@ public class MallDataStatisticsConsumer {
} catch (Exception e) { } catch (Exception e) {
log.error("过店关注人次异常:{}", url, e); log.error("过店关注人次异常:{}", url, e);
} }
url = reidUrl + "/reid/tool/repeatVisitor?mallIds=" + mallDataStatisticsInfo.getMallId() + "&startDate=" + date + "&endDate=" + date;
try {
String result = HttpUtil.get(url);
log.info("调用mallId:{} 多次进店顾客人数/人次统计 执行结果:{}", mallDataStatisticsInfo.getMallId(), result);
} catch (Exception e) {
log.error("多次进店顾客人数/人次统计异常:{}", url, e);
}
} }
} }
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!