StatisticsByTimeVO.java 615 字节
package com.skua.modules.guest.vo;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

/**
 * @author sonin
 * @date 2021/8/18 10:13
 */
@Data
@ApiModel(value="StatisticsByTimeVO对象", description="按时间统计")
public class StatisticsByTimeVO {

    @ApiModelProperty(value = "今日访问量")
    private Integer day;

    @ApiModelProperty(value = "本周访问量")
    private Integer week;

    @ApiModelProperty(value = "本月访问量")
    private Integer month;

    @ApiModelProperty(value = "累计访问量")
    private Integer all;
}