feat: 新增首页统计接口

This commit is contained in:
ray
2024-06-30 23:56:22 +08:00
parent 22073364f1
commit 6e12d10120
12 changed files with 265 additions and 11 deletions

View File

@@ -0,0 +1,27 @@
package com.youlai.system.model.vo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
@Schema(description = "访问趋势VO")
@Getter
@Setter
public class VisitTrendVO {
@Schema(description = "日期列表")
private List<String> dates;
@Schema(description = "浏览量(PV)")
private List<Integer> pvList;
@Schema(description = "访客数(UV)")
private List<Integer> uvList;
@Schema(description = "IP数")
private List<Integer> ipList;
}