gunshi-project-ss/src/main/java/com/gunshi/project/hsz/model/ISCAIEvent.java

54 lines
1.2 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.gunshi.project.hsz.model;
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 java.time.LocalDateTime;
/**
* @author lyf
* @since 2025-11-04
*/
@Data
@TableName("isc_ai_event")
public class ISCAIEvent {
@TableId(value="id", type = IdType.INPUT)
private String id;
@TableField("json")
private String json;
@TableField("starttime")
private LocalDateTime startTime;
@TableField("endtime")
private LocalDateTime endTime;
/*
事件等级,1-低2-中3-高
*/
@TableField("eventlevel")
private Integer eventLevel;
/*
事件处理状态0-未处理1-已处理
*/
@TableField("handlestatus")
private Integer handleStatus;
/*
事件类型名称
*/
@TableField("eventtypename")
private String eventTypeName;
/*
事件源名称
*/
@TableField("resname")
private String resName;
/*
事件源编号
*/
@TableField("resindexcode")
private String resIndexCode;
}