framework/src/main/java/cn/lili/modules/statistics/mapper/PlatformViewMapper.java
@@ -22,4 +22,12 @@ */ @Select("SELECT sum(uv_num) FROM li_s_platform_view_data ${ew.customSqlSegment}") Integer count(@Param(Constants.WRAPPER) QueryWrapper queryWrapper); /** * UV流量统计 * * @param queryWrapper 查询条件 * @return UV流量统计数量 */ @Select("SELECT COUNT(DISTINCT(user_id)) FROM lmk_action_record ${ew.customSqlSegment}") Integer uvCount(@Param(Constants.WRAPPER) QueryWrapper queryWrapper); }