1
Sunshine
2024-11-05 1ec0f818f512186b3af02637906632264fe97119
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
package com.nova.sankuai.domain.entity;
 
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author weikangdi
 * @create 2021/12/30
 */
@Data
@ApiModel(value = "渠道访问日志表")
public class ChannelViewLog {
 
    public static final int TYPE_UV = 0;
 
    public static final int TYPE_PV = 1;
    @ApiModelProperty(value = "主键")
    @TableId
    private Long id;
 
    @ApiModelProperty(value = "渠道Id")
    private Long channelId;
 
    @ApiModelProperty(value = "日志类型(0-UV 1-PV)")
    private Integer visitType;
 
    @ApiModelProperty(value = "创建日期")
    private Date creation_date;
 
    @ApiModelProperty(value = "日志UUID")
    private String uuidFlag;
 
}