baizonghao
2023-03-14 bd8147d7890bf60d88e4007c1af726ba5f364cf5
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.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_video_warn_events_report")
public class VideoWarnEventsReport implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    @ExcelIgnore
    private Integer id;
 
    /**
     * 事件名称
     */
    @TableField("event_name")
    @ExcelProperty(value = "事件名称",index = 0)
    private String eventName;
 
    /**
     * 所属类型
     */
    @TableField("event_type")
    @ExcelProperty(value = "所属类型",index = 1)
    private String eventType;
 
    /**
     * 是否关联商铺
     */
    @TableField("associated_shops")
    private String associatedShops;
 
    /**
     * 所属位置(地图上定位)
     */
    @TableField("event_location")
    private String eventLocation;
 
    /**
     * 所属区域
     */
    @TableField("event_region")
    private String eventRegion;
 
    /**
     * 上传视频/图片(截图)
     */
    @TableField("media")
    private String media;
 
    /**
     * 内容描述(违法违章描述)
     */
    @TableField("content")
    private String content;
 
    /**
     * 时间信息
     */
    @TableField("event_time")
    private LocalDate eventTime;
 
    /**
     * 创建时间
     */
    @TableField("create_time")
    private LocalDateTime createTime;
 
 
}