package com.nova.sankuai.domain.vo.channel; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import org.springframework.format.annotation.DateTimeFormat; import java.util.Date; /** * @author weikangdi * @create 2021/12/30 */ @Data @ApiModel(value = "渠道访问日志统计Vo") public class ChannelVisitVo { @ApiModelProperty(value = "渠道id") @JsonFormat(shape = JsonFormat.Shape.STRING) private Long id; @ApiModelProperty(value = "渠道代码") private Integer code; @ApiModelProperty(value = "渠道名") private String name; @ApiModelProperty(value = "渠道AppId") private String appId; @ApiModelProperty(value = "UV统计数量") private Integer uvCount; @ApiModelProperty(value = "PV统计数量") private Integer pvCount; @ApiModelProperty(value = "开始日期") @DateTimeFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") private Date startDate; @ApiModelProperty(value = "结束日期") @DateTimeFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") private Date endDate; @ApiModelProperty(value = "下载数") private Integer downloadCount; }