54 lines
1.2 KiB
Java
54 lines
1.2 KiB
Java
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;
|
||
}
|