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

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

@ -0,0 +1,26 @@
package com.ycwl.basic.model.mobile.statistic;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @Authorlongbinbin
* @Date2024/12/11 18:23
*/
@Data
@ApiModel("移动端扫码访问人数、推送订阅人数、预览视频人数统计结果类")
public class AppSta3VO {
@ApiModelProperty("现在的数据 扫码访问人数")
private Integer nowScanCodeOfPeopleNum;
@ApiModelProperty("上一期的数据 扫码访问人数")
private Integer previousScanCodeOfPeopleNum;
@ApiModelProperty("现在的数据 推送订阅人数")
private Integer nowPushOfPeopleNum;
@ApiModelProperty("上一期的数据 推送订阅人数")
private Integer previousPushOfPeopleNum;
@ApiModelProperty("现在的数据 预览视频人数")
private Integer nowPreviewVideoOfPeopleNum;
@ApiModelProperty("上一期的数据 预览视频人数")
private Integer previousPreviewVideoOfPeopleNum;
}