1、AlertMessage入库修复字段和库表不匹配问题,增加display_id
2、command增加display_id 3、规则、任务、配置增加新建时(批量导入除外)、任务运行状态、审核状态改变时的历史记录
This commit is contained in:
@@ -55,7 +55,7 @@ public class AlertMessage {
|
||||
@JsonProperty("c_priority")
|
||||
private Integer c_priority;
|
||||
@JsonProperty("c_time")
|
||||
private LocalDateTime c_time;
|
||||
private Long c_time;
|
||||
@JsonProperty("c_flowid")
|
||||
private String c_flowid;
|
||||
@JsonProperty("c_src_ipv4")
|
||||
@@ -80,8 +80,8 @@ public class AlertMessage {
|
||||
private Integer c_d_tunnel_port;
|
||||
@JsonProperty("c_proto_type")
|
||||
private Integer c_proto_type;
|
||||
@JsonProperty("c_return_info")
|
||||
private String c_return_info;
|
||||
|
||||
|
||||
@JsonProperty("c_s_boundary")
|
||||
private Long c_s_boundary;
|
||||
@JsonProperty("c_s_region")
|
||||
@@ -108,8 +108,8 @@ public class AlertMessage {
|
||||
private String c_d_owner;
|
||||
@JsonProperty("c_ret_file_type")
|
||||
private Integer c_ret_file_type;
|
||||
@JsonProperty("c_ret_filename")
|
||||
private String c_ret_filename;
|
||||
@JsonProperty("c_ret_file_name")
|
||||
private String c_ret_file_name;
|
||||
@JsonProperty("c_ret_file")
|
||||
private String c_ret_file;
|
||||
@JsonProperty("c_url")
|
||||
@@ -134,6 +134,15 @@ public class AlertMessage {
|
||||
private Long c_d_mark4;
|
||||
@JsonProperty("c_d_mark5")
|
||||
private Long c_d_mark5;
|
||||
|
||||
@JsonProperty("display_id")
|
||||
private String display_id;
|
||||
|
||||
@JsonProperty("c_return_info")
|
||||
private String c_return_info;
|
||||
|
||||
|
||||
|
||||
// "c_priority": 0,
|
||||
// "c_time": 1714528212,
|
||||
// "c_flowid": "ca0c192021",
|
||||
|
||||
@@ -115,6 +115,9 @@ public class TaskCommandInfo {
|
||||
@Schema(description = "指令所属任务的运行状态", accessMode = Schema.AccessMode.READ_ONLY)
|
||||
private Integer taskStatus;
|
||||
|
||||
@Schema(description = "指令展示id", accessMode = Schema.AccessMode.READ_ONLY)
|
||||
private String displayId;
|
||||
|
||||
// 复制构造函数
|
||||
public void copyTaskCommandInfo(TaskCommandInfo original) {
|
||||
this.UUID = original.UUID;
|
||||
|
||||
Reference in New Issue
Block a user