Sunshine
2024-11-04 919ed870ea1def0cfdd1dff23bec204975e7f34c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.nova.sankuai.domain.vo;
 
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 String 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;
}