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;
|
|
|
}
|