This commit is contained in:
2025-06-03 14:33:31 +08:00
parent a9655814ae
commit 1841e43b85
4 changed files with 106 additions and 49 deletions

View File

@@ -2,6 +2,7 @@ package com.ycwl.basic.mapper;
import com.ycwl.basic.model.mobile.statistic.req.CommonQueryReq;
import com.ycwl.basic.model.mobile.statistic.req.StatisticsRecordAddReq;
import com.ycwl.basic.model.mobile.statistic.resp.AppStatisticsFunnelVO;
import org.apache.ibatis.annotations.Mapper;
import java.math.BigDecimal;
@@ -93,4 +94,7 @@ public interface StatisticsMapper {
List<Long> getBrokerIdListForUser(Long memberId, Date startTime, Date endTime);
Long getUserRecentEnterType(Long memberId, Date endTime);
List<AppStatisticsFunnelVO> listStatByScenic(Long scenicId, Date startTime, Date endTime);
int insertStat(Long scenicId, Date date, AppStatisticsFunnelVO data);
}