zhanghua
2022-09-20 78515395d832445e5423895caaab21195cc12ac3
ycl-platform/src/main/java/com/ycl/entity/zf/VideoWarnEventsReport.java
File was renamed from ycl-common/src/main/java/com/ycl/entity/platform/zf/VideowarmEventsreport.java
@@ -1,4 +1,4 @@
package com.ycl.entity.platform.zf;
package com.ycl.entity.zf;
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
@@ -23,8 +23,8 @@
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("ums_videowarm_eventsreport")
public class VideowarmEventsreport implements Serializable {
@TableName("ums_video_warn_events_report")
public class VideoWarnEventsReport implements Serializable {
    private static final long serialVersionUID = 1L;
@@ -38,58 +38,58 @@
    /**
     * 事件名称
     */
    @TableField("eventName")
    @TableField("event_name")
    @ExcelProperty(value = "事件名称",index = 0)
    private String eventName;
    /**
     * 所属类型
     */
    @TableField("eventType")
    @TableField("event_type")
    @ExcelProperty(value = "所属类型",index = 1)
    private String eventType;
    /**
     * 是否关联商铺
     */
    @TableField("associatedShops")
    @TableField("associated_shops")
    private String associatedShops;
    /**
     * 所属位置(地图上定位)
     */
    @TableField("eventLocation")
    @TableField("event_location")
    private String eventLocation;
    /**
     * 所属区域
     */
    @TableField("eventRegion")
    @TableField("event_region")
    private String eventRegion;
    /**
     * 上传视频/图片(截图)
     */
    @TableField("videoOrImage")
    private String videoOrImage;
    @TableField("media")
    private String media;
    /**
     * 内容描述(违法违章描述)
     */
    @TableField("contentDesc")
    private String contentDesc;
    @TableField("content")
    private String content;
    /**
     * 时间信息
     */
    @TableField("eventTime")
    @TableField("event_time")
    private LocalDate eventTime;
    /**
     * 创建时间
     */
    @TableField("cTime")
    private LocalDateTime cTime;
    @TableField("create_time")
    private LocalDateTime createTime;
}