实现“扫码访问人数、推送订阅人数、预览视频人数统计”

This commit is contained in:
longbinbin
2024-12-12 16:21:52 +08:00
parent ba4c339660
commit ebd01b4247
6 changed files with 164 additions and 6 deletions

View File

@ -26,7 +26,7 @@ public interface StatisticsMapper {
int countPreviewOfMember(CommonQueryReq query);
/**
* 统计扫码人数
* 统计扫码访问人数
* @param query
* @return
*/
@ -46,7 +46,24 @@ public interface StatisticsMapper {
*/
int countPayOfMember(CommonQueryReq query);
/**
* 统计现场支付订单数
* @param query
* @return
*/
int countSceneOrderNum(CommonQueryReq query);
/**
* 统计推送支付订单数
* @param query
* @return
*/
int countPushOrderNum(CommonQueryReq query);
/**
* 统计推送订阅人数
* @param query
* @return
*/
int countPushOfMember(CommonQueryReq query);
}