wl
2022-09-20 4e260f558428dd81c4dd8981a965cdaa0ebf12de
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package com.ycl.entity.platform.zf;
 
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.time.LocalDate;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author wl
 * @since 2022-09-16
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("ums_videowarm_eventsreport")
public class VideowarmEventsreport implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    @ExcelIgnore
    private Integer id;
 
    /**
     * 事件名称
     */
    @TableField("eventName")
    @ExcelProperty(value = "事件名称",index = 0)
    private String eventName;
 
    /**
     * 所属类型
     */
    @TableField("eventType")
    @ExcelProperty(value = "所属类型",index = 1)
    private String eventType;
 
    /**
     * 是否关联商铺
     */
    @TableField("associatedShops")
    private String associatedShops;
 
    /**
     * 所属位置(地图上定位)
     */
    @TableField("eventLocation")
    private String eventLocation;
 
    /**
     * 所属区域
     */
    @TableField("eventRegion")
    private String eventRegion;
 
    /**
     * 上传视频/图片(截图)
     */
    @TableField("videoOrImage")
    private String videoOrImage;
 
    /**
     * 内容描述(违法违章描述)
     */
    @TableField("contentDesc")
    private String contentDesc;
 
    /**
     * 时间信息
     */
    @TableField("eventTime")
    private LocalDate eventTime;
 
    /**
     * 创建时间
     */
    @TableField("cTime")
    private LocalDateTime cTime;
 
 
}